Unconfigured Ad

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Tony-S
    Junior Member
    • Oct 2013
    • 4

    #1

    Jellyfish problem

    Greetings, I am trying to normalize 5 sets of Illumina paired-end 100 reads with Jellyfish on a Mac Pro (12 core/128 GB RAM); however, only 2 of them complete. The other 3 generate this error:

    tsmac:trinityrnaseq home$ ./util/normalize_by_kmer_coverage.pl --seqType fq --JM 100G --max_cov 30 --left 30l.fq --right -30r.fq --pairs_together --PARALLEL_STATS --JELLY_CPU 16 --output 30normalized
    Converting input files. (both directions in parallel)CMD: /Users/home/Research/Trinity/trinityrnaseq/util/..//trinity-plugins/fastool/fastool --illumina-trinity --to-fasta /Users/home/Research/Trinity/trinityrnaseq/30l.fq >> left.fa
    CMD: /Users/home/Research/Trinity/trinityrnaseq/util/..//trinity-plugins/fastool/fastool --illumina-trinity --to-fasta /Users/home/Research/Trinity/trinityrnaseq/-30r.fq >> right.fa
    CMD finished (0 seconds)
    CMD finished (264 seconds)
    Done converting input files.CMD: cat left.fa right.fa > both.fa
    CMD finished (247 seconds)
    -------------------------------------------
    ----------- Jellyfish --------------------
    -- (building a k-mer catalog from reads) --
    -------------------------------------------

    CMD: /Users/home/Research/Trinity/trinityrnaseq/util/..//trinity-plugins/jellyfish/bin/jellyfish count -t 16 -m 25 -s 14702953559 *--both-strands *both.fa
    Warn: Bad character in sequence: o
    Warn: Bad character in sequence: *
    Warn: Bad character in sequence: /
    Warn: Bad character in sequence: U
    Warn: Bad character in sequence: e
    Warn: Bad character in sequence: /
    Warn: Bad character in sequence: o
    Warn: Bad character in sequence: u
    Warn: Bad character in sequence: z
    Warn: Bad character in sequence: /
    Warn: Bad character in sequence: e
    Warn: Bad character in sequence: e
    Warn: Bad character in sequence: /
    Warn: Bad character in sequence: i
    Warn: Bad character in sequence: i
    Warn: Bad character in sequence: /
    Warn: Bad character in sequence: i
    Warn: Bad character in sequence: i
    Warn: Bad character in sequence: e
    Warn: Bad character in sequence: q
    Warn: Bad character in sequence: /
    Warn: Bad character in sequence: 3
    Warn: Bad character in sequence: 0
    Warn: Bad character in sequence: .
    Warn: Bad character in sequence: f
    Warn: Bad character in sequence: q
    Warn: Bad character in sequence: *
    Warn: Bad character in sequence: f
    Warn: Bad character in sequence: i
    Warn: Bad character in sequence: l
    Warn: Bad character in sequence: e
    Warn: Bad character in sequence: *
    Warn: Bad character in sequence: f
    Warn: Bad character in sequence: o
    Warn: Bad character in sequence: u
    Warn: Bad character in sequence: !
    CMD finished (862 seconds)
    CMD: /Users/home/Research/Trinity/trinityrnaseq/util/..//trinity-plugins/jellyfish/bin/jellyfish dump -L 2 mer_counts_0 >> jellyfish.K25.min2.kmers.fa
    CMD finished (327 seconds)
    CMD: touch jellyfish.K25.min2.kmers.fa.success
    CMD finished (0 seconds)
    CMD: /Users/home/Research/Trinity/trinityrnaseq/util/..//Inchworm/bin/fastaToKmerCoverageStats --reads left.fa --kmers jellyfish.K25.min2.kmers.fa --kmer_size 25 **--DS *> left.fa.K25.stats
    CMD: /Users/home/Research/Trinity/trinityrnaseq/util/..//Inchworm/bin/fastaToKmerCoverageStats --reads right.fa --kmers jellyfish.K25.min2.kmers.fa --kmer_size 25 **--DS *> right.fa.K25.stats
    -reading Kmer occurences...
    -reading Kmer occurences...

    done parsing 73199622 Kmers, 73199622 added, taking 1045 seconds.

    done parsing 73199622 Kmers, 73199622 added, taking 1047 seconds.
    CMD finished (1088 seconds)
    CMD finished (5019 seconds)
    CMD: /Users/home/Research/Trinity/trinityrnaseq/util/..//util/nbkc_merge_left_right_stats.pl --left left.fa.K25.stats --right right.fa.K25.stats *> pairs.K25.stats
    CMD finished (0 seconds)
    CMD: /Users/home/Research/Trinity/trinityrnaseq/util/..//util/nbkc_normalize.pl pairs.K25.stats 30 100 > pairs.K25.stats.C30.pctSD100.accs
    CMD finished (0 seconds)
    Thread 6 terminated abnormally: Error: Couldn't open /Users/home/Research/Trinity/trinityrnaseq/-30r.fq
    Error encountered with thread.
    Error, at least one thread died at ./util/normalize_by_kmer_coverage.pl line 353.
    tsmac:trinityrnaseq home$


    The submitted files for this run are "30l.fq" and "30r.fq" and after the error message there's a file in the working directory called "-30r.fq.normalized_K25_C30_pctSD100.fq". In the output directory, the left.fa file seems fine, but the right.fa file contains "No (path)/-20r.fq file found!"

    The other two sets of files that fail are named as above but with their numbers (20 and 31) with exactly the same bad characters as above. There are also -20r.fq.normalized_K25_C30_pctSD100.fq and -31r.fq.normalized_K25_C30_pctSD100.fq files in the directory.

    Unfortunately, I'm not a bioinformaticist, just an end-user, but it seems this process should be straight forward based upon the Haas paper published earlier this year and on the Trinity web page that discusses normalization. Since 2 of the 5 worked, perhaps there are errors in the other 3 files?

    If it's relevant, I ran them in this order:
    18 (succeeded)
    20 (failed)
    29 (succeeded)
    30 (failed)
    31 (failed)

    Thanks for any insight you might be able to provide.
  • GenoMax
    Senior Member
    • Feb 2008
    • 7142

    #2
    A couple of suggestions that may be more general in nature:

    1. It is not a good idea to have folder/file names start with "-". As you have figured out the unix command take options that start with "-".
    2. There may be some sort of file read permission error with one or more the files. In a terminal window can you verify with the file list command ($ ls -l) that there are read permissions for all (three "r" permissions in the long listing).
    Last edited by GenoMax; 11-10-2013, 04:55 AM.

    Comment

    • Tony-S
      Junior Member
      • Oct 2013
      • 4

      #3
      Thanks very much - the '-' is what caused the problem. I'm not sure how I put it in there for those three files, but removing it seems to fixed it. Thanks again - I'm moving forward again.

      Comment

      Latest Articles

      Collapse

      • SEQadmin2
        Beyond CRISPR/Cas9: Understand, Choose, and Use the Right Genome Editing Tool
        by SEQadmin2



        CRISPR/Cas9 sparked the gene editing revolution for both research and therapeutics.1 But this system still showed severe issues that limited its applications. The most prominent were the heavy reliance on PAM sequences, delivery limitations, double-stranded breaks that prompt unintended edits and cell death, and editing inefficiency (both in targeting and in knock-in reliability).

        Despite this, “CRISPR helped turn genome editing from a specialized technique into
        ...
        07-31-2026, 11:01 AM
      • SEQadmin2
        Proteomic Platforms: How to Choose the Right Analytical Strategy to Improve Detection and Clinical Applications
        by SEQadmin2


        Proteomics platforms are evolving rapidly, with advances in mass spectrometry and affinity-based approaches expanding what researchers can detect and at what scale. As the field moves toward deeper proteome coverage and clinical applications, scientists face an increasingly complex landscape of tools. This article will explore how researchers are navigating these choices to find the right platform for their work.

        The systematic characterization of the human proteome has
        ...
        07-20-2026, 11:48 AM

      ad_right_rmr

      Collapse

      News

      Collapse

      Topics Statistics Last Post
      Started by SEQadmin2, Yesterday, 10:35 AM
      0 responses
      7 views
      0 reactions
      Last Post SEQadmin2  
      Started by SEQadmin2, 08-06-2026, 07:41 AM
      0 responses
      25 views
      0 reactions
      Last Post SEQadmin2  
      Started by SEQadmin2, 08-03-2026, 10:13 AM
      0 responses
      44 views
      0 reactions
      Last Post SEQadmin2  
      Started by SEQadmin2, 07-31-2026, 02:55 AM
      0 responses
      48 views
      0 reactions
      Last Post SEQadmin2  
      Working...