Hello,
The following is my script:
#!/bin/bash -l
#PBS -l nodes=1:ppn=20,walltime=24:00:00
module load cufflinks/2.2.1
##define directories and other variables
#directory to input cufflinks
dir_cufflinks=/pathto/Annotation/cufflinks_preqc
#dir to reference annotation
dir_ref_annotation=/pathto/genome_index/Mus_musculus/UCSC/mm10/Annotation/Genes
#dir to DNA seq for reference
dir_ref_genome_seq=/pathto/genome_index/Mus_musculus/UCSC/mm10/Sequence/Chromosomes
cuffmerge -o ${dir_cufflinks}/cuffmerge -g ${dir_ref_annotation}/genes.gtf -s ${dir_ref_genome_seq}/*.fa -p 20 ${dir_cufflinks}/all_transcripts.txt
I want to note that:
all_transcripts.txt lists .gtf files that came out of cufflinks
-g genes.gtf was previously used with cufflinks as a reference annotation
-s contains individual Chr*.fa files
However I am getting the following error:
[Mon Dec 14 17:33:45 2015] Beginning transcriptome assembly merge
-------------------------------------------
[Mon Dec 14 17:33:45 2015] Preparing output location /pathto/Annotation/cufflinks_preqc/cuffmerge/
Traceback (most recent call last):
File "/opt/compsci/cufflinks/2.2.1/cuffmerge", line 580, in <module>
sys.exit(main())
File "/opt/compsci/cufflinks/2.2.1/cuffmerge", line 538, in main
gtf_input_files = test_input_files(transfrag_list_file)
File "/opt/compsci/cufflinks/2.2.1/cuffmerge", line 268, in test_input_files
g = open(line,"r")
IOError: [Errno 2] No such file or directory: '>chr11'
Is there something obvious I am missing here? Any input/help is appreciated
rna-seq
errno2
cuffmerge