confused about cuffdiff sample design
2
0
Entering edit mode
8.2 years ago
zizigolu ★ 4.3k

Hi,

In my experiment, before high temperature treatment (48 c), Arabidopsis cotyledons were pre-heated for 2, 8 and 24 hours. In the other hand I have cotyledons keeping in room temperature for 2, 8 and 24 hours, I mean without pre-heating these cotyledons directly face the high temperature. I don't have any replication

Something like below

  • pre-heated-2h
  • pre-heated-8h
  • pre-heated-24h
  • unpre-heated-2h
  • unpre-heated-8h
  • unpre-heated-24h

I got totally confused if I should use this syntax in cuffdiff

cuffdiff \
  -o diff_out \
  -b genome.fa \
  -p 8 \
  -u merged_asm/merged.gtf \
  pre-heated-2h.bam, pre-heated-8h.bam, pre-heated-24h.bam, unpre-heated-2h.bam, unpre-heated-8h.bam, unpre-heated-24h.bam

or

cuffdiff \
  -o diff_out \
  -b genome.fa \
  -p 8 \
  -L pre,unpre \
  -u merged_asm/merged.gtf \
  pre-heated-2h.bam, pre-heated-8h.bam, pre-heated-24h.bam, unpre-heated-2h.bam, unpre-heated-8h.bam, unpre-heated-24h.bam

Using the first syntax the cummerbund result was nonsense..and the number of differentially expressed genes was 0, how possible

I am going to know the effect of pre-heating on heat stress tolerance

Please help me to be clear a little bit

Thank you

RNA-Seq next-gen • 1.5k views
ADD COMMENT
3
Entering edit mode
8.2 years ago

Assuming there's no effect due to duration of treatment (or that it's minimal):

cuffdiff -o diff_out -b genome.fa -p 8 -L pre,unpre -u merged_asm/merged.gtf  pre-heated-2h.bam,pre-heated-8h.bam,pre-heated-24h.bam unpre-heated-2h.bam,unpre-heated-8h.bam,unpre-heated-24h.bam
ADD COMMENT
0
Entering edit mode

thank you,

sorry, no way to consider the effect of time points too?

ADD REPLY
1
Entering edit mode

Not with cuffdiff, no.

ADD REPLY
0
Entering edit mode

thank you dear Devon

ADD REPLY
4
Entering edit mode
8.2 years ago

You should at least put some effort and time (maybe 10 min ?) to read the manual and copy paste?

If you look at the manual, it clearly states:

cuffdiff [options]* <transcripts.gtf> \
<sample1_replicate1.sam[,...,sample1_replicateM.sam]> \
<sample2_replicate1.sam[,...,sample2_replicateM.sam]> ... \
[sampleN.sam_replicate1.sam[,...,sample2_replicateM.sam]]

If you apply that exact command to your data:

cuffdiff -o diff_out -b genome.fa -p 8 -L pre,unpre -u merged_asm/merged.gtf \
pre-heated-2h.bam,pre-heated-8h.bam,pre-heated-24h.bam \
unpre-heated-2h.bam,unpre-heated-8h.bam,unpre-heated-24h.bam
ADD COMMENT

Login before adding your answer.

Traffic: 2532 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6