Dear user community,
I'm getting the error message pasted below when running cuffcompare on a set of 15 GTF files created by cufflinks. The latter part of the message seems to indicate that the cuffmerge error is due to incorrect formatting in the SAM files that cuffmerge is making from the Cufflinks GTF files. The cufflinks user manual, does not state that any modifications/sorting need to be made to the Cufflinks output (transcripts.gtf) file prior to use with cuffmerge. Can anyone provide any insight into what might be triggering the error?
Thanks for your help,
Shurjo
The cuffmerge options I used:
The error message:
I'm getting the error message pasted below when running cuffcompare on a set of 15 GTF files created by cufflinks. The latter part of the message seems to indicate that the cuffmerge error is due to incorrect formatting in the SAM files that cuffmerge is making from the Cufflinks GTF files. The cufflinks user manual, does not state that any modifications/sorting need to be made to the Cufflinks output (transcripts.gtf) file prior to use with cuffmerge. Can anyone provide any insight into what might be triggering the error?
Thanks for your help,
Shurjo
The cuffmerge options I used:
Code:
#!/bin/bash ~/bin/cuffmerge -p 4 -s /home/sensh/bin/bowtie-0.12.7/indexes/hg18_inclusive.fa riboF.gtf.manifest.txt
Code:
sensh@kirk cuffmerge]$ less sh.cuffmerge.e767326 [Mon May 30 20:21:16 2011] Beginning transcriptome assembly merge ------------------------------------------- [Mon May 30 20:21:16 2011] Preparing output location ./merged_asm/ Warning: no reference GTF provided! [Mon May 30 20:21:52 2011] Converting GTF files to SAM gtf_to_sam: /usr/lib64/libz.so.1: no version information available (required by gtf_to_sam) [20:21:52] Loading reference annotation. gtf_to_sam: /usr/lib64/libz.so.1: no version information available (required by gtf_to_sam) [20:21:56] Loading reference annotation. gtf_to_sam: /usr/lib64/libz.so.1: no version information available (required by gtf_to_sam) [20:22:00] Loading reference annotation. gtf_to_sam: /usr/lib64/libz.so.1: no version information available (required by gtf_to_sam) [20:22:04] Loading reference annotation. gtf_to_sam: /usr/lib64/libz.so.1: no version information available (required by gtf_to_sam) [20:22:08] Loading reference annotation. gtf_to_sam: /usr/lib64/libz.so.1: no version information available (required by gtf_to_sam) [20:22:12] Loading reference annotation. gtf_to_sam: /usr/lib64/libz.so.1: no version information available (required by gtf_to_sam) [20:22:16] Loading reference annotation. gtf_to_sam: /usr/lib64/libz.so.1: no version information available (required by gtf_to_sam) [20:22:20] Loading reference annotation. gtf_to_sam: /usr/lib64/libz.so.1: no version information available (required by gtf_to_sam) [20:22:24] Loading reference annotation. gtf_to_sam: /usr/lib64/libz.so.1: no version information available (required by gtf_to_sam) [20:22:28] Loading reference annotation. gtf_to_sam: /usr/lib64/libz.so.1: no version information available (required by gtf_to_sam) [20:22:31] Loading reference annotation. gtf_to_sam: /usr/lib64/libz.so.1: no version information available (required by gtf_to_sam) [20:22:35] Loading reference annotation. gtf_to_sam: /usr/lib64/libz.so.1: no version information available (required by gtf_to_sam) [20:22:39] Loading reference annotation. gtf_to_sam: /usr/lib64/libz.so.1: no version information available (required by gtf_to_sam) [20:22:43] Loading reference annotation. gtf_to_sam: /usr/lib64/libz.so.1: no version information available (required by gtf_to_sam) [20:22:47] Loading reference annotation. [Mon May 30 20:22:55 2011] Assembling transcripts cufflinks: /usr/lib64/libz.so.1: no version information available (required by cufflinks) Warning: Could not connect to update server to verify current version. Please check at the Cufflinks website (http://cufflinks.cbcb.umd.edu). [bam_header_read] EOF marker is absent. File ./merged_asm/tmp/mergeSam_fileiIWPXL doesn't appear to be a valid BAM file, trying SAM... [20:23:16] Inspecting reads and determining fragment length distribution. Error: this SAM file doesn't appear to be correctly sorted! current hit is at chr11:116987, last one was at chr10:135333670 Cufflinks requires that if your file has SQ records in the SAM header that they appear in the same order as the chromosomes names in the alignments. If there are no SQ records in the header, or if the header is missing, the alignments must be sorted lexicographically by chromsome name and by position. [FAILED] Error: could not execute cufflinks
Comment