...
File Name | Description | Sample |
|---|---|---|
| Single-end Illumina 36-bp reads | wild-type, biological replicate 1 |
| Single-end Illumina 36-bp reads | Δ ?sigB mutant, biological replicate 1 |
| Single-end Illumina 36-bp reads | wild-type, biological replicate 2 |
| Single-end Illumina 36-bp reads | Δ ?sigB mutant, biological replicate 2 |
| Reference Genome sequence (FASTA) | Listeria monocytogenes strain 10403S |
| Reference Genome features (GFF) | Listeria monocytogenes strain 10403S |
...
| Warning | ||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Optional: HTseqHTseq is another tool to count reads. bedtools has many many useful functions, and counting reads is just one of them. In contrast, HTseq is a specialized utility for counting reads, and it does not have many functions other than that. HTseq is very slow and you need to run multiple command lines in order to do the same job as what bedtools multicov did. Why do we learn this? Well, you may want to care about reads mapped on intersection when you count reads. Please take a look at this page, and if this sophisticated counting method looks useful for you, use HTseq. Otherwise, use bedtools.
gene_counts_HTseq.gff has 5 more lines than gene_counts.gff. Check out the last 5 lines. They are basic statistics.
The basic statistics (last 5 lines) is good to know, but should be removed as a input file for DEGseq
Finally, gene_counts_HTseq.tab is ready to use. HTseq-count is strand-specific in default. Therefore, read counts for each gene in gene_counts_HTseq.gff are approximately a half of that in gene_counts.gff Analyze differential gene expressionDESeqOur data that is cluttered with a lot of extra columns and one column stuffed with We can do this cleanup many ways, but a quick one is to use the Unix string editor
After it has run, take a peek at the new file:
Do not copy the
Is the same as:
It's ok to copy across the multiple lines and paste into R as long as you get all the way to the closing parenthesis. |
...