Hi all,
I want to use Cuffdiff and I am just interested in differentially expressed genes but not any gene discovery. So I have used the Bam files from tophat output and then using them as the input of cuffdiff. Below is the code I have used but nothing is run and it says there is a command mistake. Is it due to the point that I have not run cufflinks before it can it be due to the point that I have used flag -G before my gtf file just for not interested in discovery of new genes?
Any help would be appreciated.
#!/bin/bash
#$ -cwd
#$ -pe smp 12
module use /app/modulefiles
module add samtools
module add bowtie/2.0.0-beta7
module add tophat/2.0.4
module add cufflinks/2.0.2-beta
cuffdiff -o output -p 12 -G /Genes/genes.gtf -L Male,Female /group1/accepted_hits.bam /group2/accepted_hits.bam
I want to use Cuffdiff and I am just interested in differentially expressed genes but not any gene discovery. So I have used the Bam files from tophat output and then using them as the input of cuffdiff. Below is the code I have used but nothing is run and it says there is a command mistake. Is it due to the point that I have not run cufflinks before it can it be due to the point that I have used flag -G before my gtf file just for not interested in discovery of new genes?
Any help would be appreciated.
#!/bin/bash
#$ -cwd
#$ -pe smp 12
module use /app/modulefiles
module add samtools
module add bowtie/2.0.0-beta7
module add tophat/2.0.4
module add cufflinks/2.0.2-beta
cuffdiff -o output -p 12 -G /Genes/genes.gtf -L Male,Female /group1/accepted_hits.bam /group2/accepted_hits.bam
Comment