Lab 11: Differential Gene Expression Flashcards

1
Q

Use R to analyze Gene Sets

A

Most of the time you will be using R functions to analyze your data. R functions generally take some input (usually your data) and produce some output (such as a plot).

To run a function in R, you type the name of the function followed by parentheses, and you put the input(s) to the function inside the parentheses, separated by commas:

functionName( INPUT1, INPUT2 )

Inputs tell the function how to run. For example, the summary() command needs one input: what data it should summarize. If we want a summary of our RNA-seq readCounts, we would type

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Describe Differential Expression Analysis

A

Differential Expression analysis is searching for difference in gene expression. The program used is DESeq2

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Create and analyze histograms from HTSeq files

A

HTseq aligns the sequences to the reference genome and counts how many sequences align to each gene.
More sequences align to a gene, the higher the expression level of the gene.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Calculate Differential Gene Expression in real scientific data

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly