-
Notifications
You must be signed in to change notification settings - Fork 0
Reference Guided Transcript Assembly
######Note on de novo transcript discovery and differential expression using Cufflinks and Cuffdiff ######In the previous module we ran Cufflinks in 'reference only' mode using the '-G/--GTF' Cufflinks option.
######In this module we will run Cufflinks in two additional modes: (1) 'reference guided' mode and (2) 'de novo' mode ######Cufflinks can predict the transcripts present in each library with or without help from knowledge of known transcripts ######Cufflinks will then assign arbitrary transcript IDs to each transcript assembled from the data and estimate expression for those transcripts ######One complication with this method is that in each library a different set of transcripts is likely to be predicted for each library ######There may be a lot of similarities but the number of transcripts and their exact structure will differ in the output files for each library ######Before you can compare across libraries you therefore need to determine which transcripts correspond to each other across the libraries ######Cufflinks provides 'cuffmerge' to combine predicted transcript GTF files from across different libraries ######Once you have a merged GTF file you can run Cuffdiff with this instead of the known transcripts GTF file we used above
######To run Cufflinks in 'reference guided' mode: use the '-g/--GTF-guide' option ######To run Cufflinks in 'de novo' mode do not specify either of the '-G/--GTF' OR '-g/--GTF-guide' options.
######Refer to the Cufflinks manual for a more detailed explanation: ######http://cufflinks.cbcb.umd.edu/manual.html
######13. CUFFLINKS REFERENCE GUIDED MODE ######Using the alignments we generated in the previous modules we will now run Cuffinks in reference guided mode using the '-g/--GTF-guide' option ######Extra options specified below
'-g/--GTF-guide ' Tells Cufflinks to consider known transcript annotations during the assembly process
cd $RNA_HOME/expression/
mkdir -p tophat_cufflinks/ref_guided
cd tophat_cufflinks/ref_guided
cufflinks -p 8 -o Normal_cDNA1_lib2 --GTF-guide $RNA_HOME/refs/hg19/genes/genes_chr22.gtf --frag-len-mean 262 --frag-len-std-dev 80 --no-update-check $RNA_HOME/alignments/tophat/Normal_cDNA1_lib2/accepted_hits.bam
cufflinks -p 8 -o Normal_cDNA2_lib2 --GTF-guide $RNA_HOME/refs/hg19/genes/genes_chr22.gtf --frag-len-mean 262 --frag-len-std-dev 80 --no-update-check $RNA_HOME/alignments/tophat/Normal_cDNA2_lib2/accepted_hits.bam
cufflinks -p 8 -o Tumor_cDNA1_lib2 --GTF-guide $RNA_HOME/refs/hg19/genes/genes_chr22.gtf --frag-len-mean 262 --frag-len-std-dev 80 --no-update-check $RNA_HOME/alignments/tophat/Tumor_cDNA1_lib2/accepted_hits.bam
cufflinks -p 8 -o Tumor_cDNA2_lib2 --GTF-guide $RNA_HOME/refs/hg19/genes/genes_chr22.gtf --frag-len-mean 262 --frag-len-std-dev 80 --no-update-check $RNA_HOME/alignments/tophat/Tumor_cDNA2_lib2/accepted_hits.bam
Table of Contents
Module 0: Authors | Citation | Syntax | Intro to AWS | Log into AWS | Unix | Environment | Resources
Module 1: Installation | Reference Genomes | Annotations | Indexing | Data | Data QC
Module 2: Adapter Trim | Alignment | IGV | Alignment Visualization | Alignment QC
Module 3: Expression | Differential Expression | DE Visualization
Module 4: Ref Guided | De novo | Merging | Differential Splicing | Splicing Visualization
Module 5: Kallisto
Appendix: Abbreviations | Lectures | Practical Exercise Solutions | Integrated Assignment | Proposed Improvements | AWS Setup