...
You have already worked with a paired-end yeast ChIP-seq dataset, which we will continue to use here. We The paired end data should be located at:
Code Block |
---|
$SCRATCH/YEAST_FASTQ_AFTER_DAY_2 |
We will also use two additional RNA-seq datasets. The additional data , which are located in the pathat:
Code Block |
---|
$SCRATCH/corral-repl/utexas/BioITeam/core_ngs_tools/human_stuff |
...
stuff |
Set up a new directory in your scratch area called 'fastq_align', and populate it with copies the following files, derived from the locations given above:
File Name | Description | Sample |
---|---|---|
Sample_Yeast_L005_R1.cat.fastq.gz | Paired-end Illumina, First of pair, FASTQ | Yeast ChIP-seq |
Sample_Yeast_L005_R2.cat.fastq.gz | Paired-end Illumina, Second of pair, FASTQ | Yeast ChIP-seq |
human_rnaseq.fastq.gz | Paired-end Illumina, First of pair only, FASTQ | Human RNA-seq |
human_mirnaseq.fastq.gz | Single-end Illumina, FASTQ | Human microRNA-seq |
Expand | ||
---|---|---|
| ||
|
Do a fast quality check on the two new data files like you did earlier on the yeast files, and move all files and directories that are produced from the fastQC commands into a new subdirectory called 'fastqc_out'.
Expand | ||
---|---|---|
| ||
|
Reference Genomes
Before we get to alignment, we need a genome to align to. We will use three different references here: the human genome (hg19), the yeast genome (sacCer3), and mirbase (v20). Mirbase is a collection of all known microRNAs in all species, and we will use the human subset of that database as our alignment reference. This has the advantage of being significantly smaller than the human genome, while containing all the sequences we are actually interested in.
Expand | ||
---|---|---|
| ||
Due to natural variation, sequencing errors, and processing issues, variation between reference sequence and sample sequence is always possible. Alignment to the human genome allows a putative "microRNA" read the opportunity to find a better alignment in a region of the genome that is not an annotated microRNA relative to the microRNA reference sequence. If this occurs, we might think that a read represents a microRNA (since it aligned in the mirbase alignment), when it is actually more likely to have come from a non-miRNA area of the genome. |
These are the three reference genomes we will be using today, with some information about them (and here is information about many more genomes):
Reference | Species | Base Length | Contig Number | Source | Download |
---|---|---|---|---|---|
Hg19 | Human | 3.1 Gbp | 25 (really 93) | UCSC | UCSC GoldenPath |
SacCer3 | Yeast | 12.2 Mbp | 17 | UCSC | UCSC GoldenPath |
MirbaseV20 | Human | 160 Kbp | 1908 | Mirbase | Mirbase Downloads |
Searching genomes, however, is hard work and takes a long time if done on an un-indexed, linear genomic sequence. So, most aligners require that references be indexed for quick access The aligners we are using each require a different index, but use the same method (the Burrows-Wheeler Transform) to get the job done. This requires taking a FASTA file as input, with each chromosome (or contig) as a separate entry, and producing some aligner-specific set of files as output. Then, those output files are used by the aligner when executing a given alignment command. Here are some details of where you can find the references we need now (and here are many more):
Reference | Species | Base Length | Contig Number | Source | Download Link |
---|---|---|---|---|---|
Hg19 | Human | 3,137,161,264 | 25 (really 93) | UCSC | |
MirbaseV20 | Human | 1908 | Mirbase | ||
SacCer3 | Yeast | 17 | UCSC | ||
Mm10 | Mouse | 22 (really 66) | UCSC |
The yeast and mirbase fasta files (with just reference sequence information) are located on the path:
Code Block |
---|
/ |
Hg19 is way too big for us to index here, so we've already done it.
Hg19 is way too big for us to index here, so we're not going to do it, and it's not included in the core_ngs_tools directory at Corral that we've been copying from. Instead, all hg19 index files are located at:
Code Block |
---|
/scratch/01063/abattenh/ref_genome/bwa/bwtsw/hg19 |
Now, we're going to grab the other two references, and we will build each index right before we use it in each set of exercise below. These two references are located at:
Code Block |
---|
/corral-repl/utexas/BioITeam/core_ngs_tools/references/sacCer3.fa
/corral-repl/utexas/BioITeam/core_ngs_tools/references/hairpin_cDNA_hsa.fa |
Now, stage the yeast and mirbase reference fasta files in your scratch area in a directory called 'references'.
Expand | ||
---|---|---|
| ||
|
With that, we're ready to get started on the first exercise.
Exercise #1: BWA - Yeast ChIP-seq
Option | Effect | Best Practice Setting |
---|---|---|
-k | ||
-n | ||
-l | ||
-t |
Exercise #2: Bowtie2 and Local Alignment - Human microRNA-seq
Exercise #3: BWA-MEM (and Tophat2) - Human mRNA-seq
Future Directions