hi,
so I'm slightly confused about the usage of cuffmerge/cuffdiff. as i see it, cuffmerge merges all of the .bam/.sam output files from tophat to produce a merged .gtf file which you then use as a reference during cuffdiff.
i have like 12 replicates for 3 conditions in my samples (giving 36 in total) and I want to look at differential expression between the 3 conditions. Do i need to somehow merge all 12 samples in each treatment into a file and then compare the 3 merged files, or do I run cuffmerge on all 48 individual files. i don't think the instructions in the readme are very clear!
for the record, I tried doing it like this, using all 48 files like this and it came out with some errors and wouldn't work.
Thanks!
so I'm slightly confused about the usage of cuffmerge/cuffdiff. as i see it, cuffmerge merges all of the .bam/.sam output files from tophat to produce a merged .gtf file which you then use as a reference during cuffdiff.
i have like 12 replicates for 3 conditions in my samples (giving 36 in total) and I want to look at differential expression between the 3 conditions. Do i need to somehow merge all 12 samples in each treatment into a file and then compare the 3 merged files, or do I run cuffmerge on all 48 individual files. i don't think the instructions in the readme are very clear!
for the record, I tried doing it like this, using all 48 files like this and it came out with some errors and wouldn't work.
Thanks!
Code:
/home/user/Downloads/cufflinks/cuffdiff -o /home/user/Desktop/cuffdiff_out /home/user/Desktop/sam/cuffmerge/beta/merged_beta.gtf /home/user/Desktop/sam/other_data/tophat_out/2B84A/accepted_hits.bam,/home/user/Desktop/sam/other_data/tophat_out/2B84B/accepted_hits.bam,/home/user/Desktop/sam/other_data/tophat_out/12Y30B/accepted_hits.bam,/home/user/Desktop/sam/other_data/tophat_out/10G48A/accepted_hits.bam,/home/user/Desktop/sam/other_data/tophat_out/10G48B/accepted_hits.bam,home/user/Desktop/sam/other_data/tophat_out/23Y79A/accepted_hits.bam,/home/user/Desktop/sam/other_data/tophat_out/23Y79B/accepted_hits.bam,/home/user/Desktop/sam/other_data/tophat_out/36W26A/accepted_hits.bam,/home/user/Desktop/sam/other_data/tophat_out/36W26B/accepted_hits.bam,/home/user/Desktop/sam/other_data/tophat_out/10B70B/accepted_hits.bam,/home/user/Desktop/sam/other_data/tophat_out/35Y87A/accepted_hits.bam,/home/user/Desktop/sam/other_data/tophat_out/35Y87B/accepted_hits.bam /home/user/Desktop/sam/other_data/tophat_out/2UNA/accepted_hits.bam,/home/user/Desktop/sam/other_data/tophat_out/2UNB/accepted_hits.bam,/home/user/Desktop/sam/other_data/tophat_out/12Y47A/accepted_hits.bam,/home/user/Desktop/sam/other_data/tophat_out/12Y47B/accepted_hits.bam,/home/user/Desktop/sam/other_data/tophat_out/10G87A/accepted_hits.bam,/home/user/Desktop/sam/other_data/tophat_out/10G87B/accepted_hits.bam,/home/user/Desktop/sam/other_data/tophat_out/23Y70A/accepted_hits.bam,/home/user/Desktop/sam/other_data/tophat_out/23Y70B/accepted_hits.bam,/home/user/Desktop/sam/other_data/tophat_out/36W62A/accepted_hits.bam,/home/user/Desktop/sam/other_data/tophat_out/36W62B/accepted_hits.bam,/home/user/Desktop/sam/other_data/tophat_out/1OR99A/accepted_hits.bam,/home/user/Desktop/sam/other_data/tophat_out/10R99B/accepted_hits.bam /home/user/Desktop/sam/other_data/tophat_out/2B82A/accepted_hits.bam,/home/user/Desktop/sam/other_data/tophat_out/2B82B/accepted_hits.bam,/home/user/Desktop/sam/other_data/tophat_out/12Y51A/accepted_hits.bam,/home/user/Desktop/sam/other_data/tophat_out/12Y51B/accepted_hits.bam,/home/user/Desktop/sam/other_data/tophat_out/10G17A/accepted_hits.bam,/home/user/Desktop/sam/other_data/tophat_out/10G17B/accepted_hits.bam,/home/user/Desktop/sam/other_data/tophat_out/23Y59A/accepted_hits.bam,/home/user/Desktop/sam/other_data/tophat_out/23Y59B/accepted_hits.bam,/home/user/Desktop/sam/other_data/tophat_out/36W35A/accepted_hits.bam,/home/user/Desktop/sam/other_data/tophat_out/36W35B/accepted_hits.bam,/home/user/Desktop/sam/other_data/tophat_out/35Y44A/accepted_hits.bam,/home/user/Desktop/sam/other_data/tophat_out/35Y44B/accepted_hits.bam
Comment