Unconfigured Ad

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • wall_y
    Junior Member
    • May 2011
    • 7

    cuffmerge failed

    any idea about this failure? how to make fasta have the same length? and what does this mean? thank you!

    [Wed Sep 28 20:19:22 2011] Beginning transcriptome assembly merge
    -------------------------------------------

    [Wed Sep 28 20:19:22 2011] Preparing output location ./merged_asm/
    [Wed Sep 28 20:19:22 2011] Converting GTF files to SAM
    gtf_to_sam: /usr/lib64/libz.so.1: no version information available (required by gtf_to_sam)
    [20:19:22] Loading reference annotation.
    gtf_to_sam: /usr/lib64/libz.so.1: no version information available (required by gtf_to_sam)
    [20:19:22] Loading reference annotation.
    gtf_to_sam: /usr/lib64/libz.so.1: no version information available (required by gtf_to_sam)
    [20:19:23] Loading reference annotation.
    [Wed Sep 28 20:19:23 2011] Quantitating transcripts
    cufflinks: /usr/lib64/libz.so.1: no version information available (required by cufflinks)
    You are using Cufflinks v1.1.0, which is the most recent release.
    [bam_header_read] EOF marker is absent.
    [bam_header_read] invalid BAM binary header (this is not a BAM file).
    File ./merged_asm/tmp/mergeSam_fileu98BBT doesn't appear to be a valid BAM file, trying SAM...
    [20:19:23] Loading reference annotation.
    [20:19:24] Inspecting reads and determining fragment length distribution.
    Processed 4610 loci.
    > Map Properties:
    > Total Map Mass: 27713.00
    > Read Type: 0bp single-end
    > Fragment Length Distribution: Truncated Gaussian (default)
    > Default Mean: 200
    > Default Std Dev: 80
    [20:19:24] Assembling transcripts and estimating abundances.
    Processed 4610 loci.
    [Wed Sep 28 20:19:53 2011] Comparing against reference file xxx.gtf
    You are using Cufflinks v1.1.0, which is the most recent release.
    No fasta index found for ../bowtie-0.12.7/genomes/chr.fasta. Rebuilding, please wait..
    Error: sequence lines in a FASTA record must have the same length!
    [FAILED]
    Error: could not execute cuffcompare

    Traceback (most recent call last):
    File "/home/student/yujinhai/cufflinks-1.1.0.Linux_x86_64/cuffmerge", line 573, in ?
    sys.exit(main())
    File "/home/student/yujinhai/cufflinks-1.1.0.Linux_x86_64/cuffmerge", line 556, in main
    compare_meta_asm_against_ref(params.ref_gtf, params.fasta, output_dir+"/transcripts.gtf")
    File "/home/student/yujinhai/cufflinks-1.1.0.Linux_x86_64/cuffmerge", line 406, in compare_meta_asm_against_ref
    tmap = compare_to_reference(gtf_input_file, ref_gtf, fasta_file)
    File "/home/student/yujinhai/cufflinks-1.1.0.Linux_x86_64/cuffmerge", line 342, in compare_to_reference
    exit(1)
    TypeError: 'str' object is not callable
  • gringer
    David Eccles (gringer)
    • May 2011
    • 845

    #2
    The command line that you ran would be useful, as well as the first few lines of input files. The warnings about conversion and lack of GTF version information are a little odd.

    how to make fasta have the same length? and what does this mean?
    Looking at the cufflinks code, it's expecting a fairly standard fasta format with equal-length lines (except for the last line) in each fasta record. Something like this:
    Code:
    >gi|347448407|gb|JN582205.1| Dorylomorpha spinosa voucher KNWR:Ento:4382 cytochrome oxidase subunit 1 (COI) gene, partial cds; mitochondrial
    AACATTATATTTTATATTTGGTGCCTGAGCAGGAATAGTGGGTACATCCCTAAGAATCCTTATTCGAGCT
    GAACTAGGACATCCAGGATCACTAATTGGAGATGACCAAATTTATAACGTAATTGTAACAGCTCATGCTT
    TTGTGATAATTTTTTTTATAGTAATACCTATTATAATTGGAGGATTCGGGAATTGACTAGTACCCCTAAT
    ACTAGGAGCTCCTGACATAGCATTCCCTCGTATAAACAATATAAGATTTTGAATATTACCCCCATCATTA
    TCCCTTCTACTCCTTAGAAGAATAACTAACAACGGAGCTGGTACCGGATGAACGGTATACCCACCACTAT
    CATCAAACATCGCCCACGAAGGTGCATCAGTTGATTTAGCTATTTTTTCATTACATTTAGCAGGAATTTC
    ATCAATTCTAGGAGCAGTAAATTTTATTACTACAGTAATTAATATACGTTCAACAGGAATTTCATTTGAC
    CGAATACCTTTATTTGTATGGGCAGTAGTAATTACAGCATTATTACTTCTTTTATCATTACCAGTTCTTG
    CAGGAGCCATTACTATACTATTAACAGACCGAAATTTTAATACTTCATTCTTTGACCCGGCTGGAGGAGG
    TGACCCAATTTTATACCAACATTTATTT
    rather than this:
    Code:
    >gi|347448407|gb|JN582205.1| Dorylomorpha spinosa voucher KNWR:Ento:4382 cytochrome oxidase subunit 1 (COI) gene, partial cds; mitochondrial
    AACATTATATTTTATATTTGGTGCCTGAGCAGGAATAGTGGGTACATCCCTAAGAATCCTTATT
    CGAGCTGAACTAGGACATCCAGGATCACTAATTGGAGATGACCAAATTTATAACGTAATTGTAACAGCTCATGCTT
    TTGTGATAATTTTTTTTATAGTAATACCTATTATAATTGGAGGATTCGG
    GAATTGACTAGTACCCCTAATACTAGGAGCTCCTGACATAGCATTCCCTCGTATAAACAATATAAGATTTTGAATATTACCCCCATCATTA
    TCCCTTCTACTCCTTAGAAGAATAACTAACAACGGAGCTGGTACCGGATGAACGGTATACCCACCAC
    TATCATCAAACATCGCCCACGAAGGTGCATCAGTTGATTTAGCTATTTTTTCATTACATTTAGCAGGAATTTC
    ATCAATTCTAGGAGCAGTAAATTTTATTACTACAGTAATTAATATACGTTCAACAGGAATTTCATTTGA
    CCGAATACCTTTATTTGTATGGGCAGTAGTAATTACAGCATTATTACTTCTTTTATCATTACCAGTTCTTG
    CAGGAGCCATTACTATACTATTAACAGACCGAAATTTTAATACTTC
    ATTCTTTGACCCGGCTGGAGGAGGTGACCCAATTTTATACCAACATTTATTT

    Comment

    • wall_y
      Junior Member
      • May 2011
      • 7

      #3
      thank you for reply

      Thank you for your reply, i checked my fasta file, and it seems to be right as you mentioned.(though they seem not have same length, but actually they do.)

      >chr
      CCGCGGCGCTGCTCCCGGCGCTCCGCGCCGGGAGACGGGGCGAGTCGCTGCGCTCCCCGCCAGGGAGCCG
      CTGCGCGGCTCGCAGTGGGTCGATTCCCGTTGCCGTCGATCGAGTCGCTTCGCTCCTCTGAGTTTCCGAG
      ATTAGGTTCTCGCCTGCACTTTTCATCGTCCCGTTCGATCCGGTCCCCCGCACCCCAACGGGGCTGGAGA
      AGCGGGAGGGTGTGCCCGACCCGCCGCCCACTCGCCTTCCCGCACCGCTCCATGTCATACCCACAGCATA
      CCACCCGGCACCCTCGAATCCCAAAACAGACGAAAAACTTAAAACACCCATATCTGTTGATAATCAACCT
      TTTTCGAACCTTACAATCTGAAAAACGTGCACAACCCACGTAAAAACTTACTCACCAAGTAATTACCCAA
      ACATGTTGTCAATCAATACCTTTCAGAAACGGCTCGAAAACGGACGAAGCAGACACCCCCACGCCCGCCG
      ACACCCCGGCGCCGGCACTCACCCGACAGGTCGCCGACACCCCACATCACAAACCGGAGACATGTCATCA
      CACCAGGTCACAGCACCATTACGCCCGCGGGTGCCGAGGTCGCATCGATCCCACCCAGAATGGGCAGCAG
      AGATTCAGCAGCGGATCGCGTCGCTCGCGGCGACGCCTTGGGGCGGGAGCGCGTCATCGTGTTCGAGAGA
      TTCTCCGATCAAGCCCGCCACGTGGTCGTCCTCGCCGCCGGCGCCGCCCGCACCCACCACCAGAACTGGC


      so i don't know how to fix it.

      the warnings are really wired, i don't even have a clue what's going wrong.


      [QUOTE=gringer;52590]The command line that you ran would be useful, as well as the first few lines of input files. The warnings about conversion and lack of GTF version information are a little odd.



      Looking at the cufflinks code, it's expecting a fairly standard fasta format with equal-length lines (except for the last line) in each fasta record. Something like this:
      Code:
      >gi|347448407|gb|JN582205.1| Dorylomorpha spinosa voucher KNWR:Ento:4382 cytochrome oxidase subunit 1 (COI) gene, partial cds; mitochondrial
      AACATTATATTTTATATTTGGTGCCTGAGCAGGAATAGTGGGTACATCCCTAAGAATCCTTATTCGAGCT
      GAACTAGGACATCCAGGATCACTAATTGGAGATGACCAAATTTATAACGTAATTGTAACAGCTCATGCTT
      TTGTGATAATTTTTTTTATAGTAATACCTATTATAATTGGAGGATTCGGGAATTGACTAGTACCCCTAAT
      ACTAGGAGCTCCTGACATAGCATTCCCTCGTATAAACAATATAAGATTTTGAATATTACCCCCATCATTA
      TCCCTTCTACTCCTTAGAAGAATAACTAACAACGGAGCTGGTACCGGATGAACGGTATACCCACCACTAT
      CATCAAACATCGCCCACGAAGGTGCATCAGTTGATTTAGCTATTTTTTCATTACATTTAGCAGGAATTTC
      ATCAATTCTAGGAGCAGTAAATTTTATTACTACAGTAATTAATATACGTTCAACAGGAATTTCATTTGAC
      CGAATACCTTTATTTGTATGGGCAGTAGTAATTACAGCATTATTACTTCTTTTATCATTACCAGTTCTTG
      CAGGAGCCATTACTATACTATTAACAGACCGAAATTTTAATACTTCATTCTTTGACCCGGCTGGAGGAGG
      TGACCCAATTTTATACCAACATTTATTT
      Attached Files

      Comment

      • Francesc
        Junior Member
        • Dec 2009
        • 2

        #4
        This is a really old thread, but just in case somebody has the same problem,
        I solved it removing the extra new line at the end of my fasta file.

        Since my fasta file only had one record I only removed one empty line.
        I don't know if all empty lines would need to be removed for multiple fasta files.

        Comment

        • drdna
          Member
          • May 2012
          • 76

          #5
          I was getting this error until I removed all empty lines between separate sequences.

          Comment

          Latest Articles

          Collapse

          • mylaser
            Reply to Advanced Sequencing Platforms Tackle Neuroscience’s Toughest Genomics Problems
            by mylaser
            Kheloyar – Everything You Need to Know About Kheloyaar Login and Kheoyar Id
            If you are looking for an online gaming platform that offers a user-friendly experience, Kheloyar has become a name that many users search for. Whether you're interested in creating a new account, accessing your dashboard through Kheloyaar Login, or learning how to obtain a Kheoyar Id, understanding the platform's features and account process is essential.
            This guide explains everything you need to know about...
            Today, 01:13 AM
          • SEQadmin2
            Advanced Sequencing Platforms Tackle Neuroscience’s Toughest Genomics Problems
            by SEQadmin2



            Genomics studies in neuroscience face a special challenge due to the brain’s complexity and scarcity of samples. Mapping changes in cell type and state using conventional next-generation sequencing methods remains challenging. Advances in technologies like single-cell sequencing, spatial transcriptomics, and long-read sequencing have opened the door to deeper studies of the brain and diseases like Alzheimer’s, amyotrophic lateral sclerosis (ALS), and schizophrenia.
            ...
            07-09-2026, 11:10 AM
          • SEQadmin2
            Cancer Drug Resistance: The Lingering Barrier to Rising Survival
            by SEQadmin2



            Cancer survival rates have significantly increased in the last few decades in the United States, reaching a combined 70% 5-year survival rate by 2021. Behind this number, there are years of research to find new therapies, drug targets, and early detection methods. But there is one core challenge that keeps slowing down these advances, and it’s about drug resistance.

            There is no single reason why many patients don’t respond to treatment as expected. Cancer is...
            07-08-2026, 05:17 AM

          ad_right_rmr

          Collapse

          News

          Collapse

          Topics Statistics Last Post
          Started by SEQadmin2, 07-09-2026, 10:04 AM
          0 responses
          11 views
          0 reactions
          Last Post SEQadmin2  
          Started by SEQadmin2, 07-08-2026, 10:08 AM
          0 responses
          9 views
          0 reactions
          Last Post SEQadmin2  
          Started by SEQadmin2, 07-07-2026, 11:05 AM
          0 responses
          17 views
          0 reactions
          Last Post SEQadmin2  
          Started by SEQadmin2, 07-02-2026, 11:08 AM
          0 responses
          31 views
          0 reactions
          Last Post SEQadmin2  
          Working...