Seqanswers Leaderboard Ad

Collapse

Announcement

Collapse
No announcement yet.
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • help with GNU parallel

    Hi,

    I want to run Deconseq on a huge file using GNU parallel. Deconseq input is like this:
    Code:
    deconseq -i [% identity] -c [% coverage] -out_dir [output dir] -id [optional file id] -f [iput fasta/fastq file] -dbs [database to screen against]
    I tried configuring command like that;
    Code:
    cat /home/yaximik/input.fq | parallel --block 100M -k --pipe --recstart @M01227 --recend '\n' deconseq -i 94 -c 70 -out_dir /home/yaximik/outdir -id TESThg19 -f {} -dbs hg19
    However, deconseq exits with an error as {} is not substituted with iput.fq for -f, and {} does not work with -dbs. Is anything wrong here or can I do this differently?

  • #2
    try using the --dry-run flag to see what command parallel is attempting to run. I assume you've got some escape characters getting muddled up. Most of my my parallel commands end up chock full of backslashes

    Comment


    • #3
      Originally posted by yaximik View Post
      Hi,

      I tried configuring command like that;
      Code:
      cat /home/yaximik/input.fq | parallel --block 100M -k --pipe --recstart @M01227 --recend '\n' deconseq -i 94 -c 70 -out_dir /home/yaximik/outdir -id TESThg19 -f {} -dbs hg19
      It is extremely rarely that --pipe and {} make sense together. You need to remember that GNU Parallel passes the input on stdin and not as a file when you use --pipe.

      So if deconseq can read from stdin you can use that. Often programs will accept '-' as file for stdin: deconseq ... -f -

      If you run GNU Linux you probably can do: deconseq ... -f /dev/stdin

      If that does not work, you first need to save stdin to a file: cat > {#}; deconseq ... -f {#}

      With the git version of GNU Parallel you can get rid of the ugly --recstart @M01227 and instead use -L4 (each record is 4 lines long).

      If #ilovefs remember to cite: parallel --bibtex
      Last edited by tange; 02-14-2013, 04:36 PM.

      Comment

      Latest Articles

      Collapse

      • seqadmin
        Best Practices for Single-Cell Sequencing Analysis
        by seqadmin



        While isolating and preparing single cells for sequencing was historically the bottleneck, recent technological advancements have shifted the challenge to data analysis. This highlights the rapidly evolving nature of single-cell sequencing. The inherent complexity of single-cell analysis has intensified with the surge in data volume and the incorporation of diverse and more complex datasets. This article explores the challenges in analysis, examines common pitfalls, offers...
        06-06-2024, 07:15 AM
      • seqadmin
        Latest Developments in Precision Medicine
        by seqadmin



        Technological advances have led to drastic improvements in the field of precision medicine, enabling more personalized approaches to treatment. This article explores four leading groups that are overcoming many of the challenges of genomic profiling and precision medicine through their innovative platforms and technologies.

        Somatic Genomics
        “We have such a tremendous amount of genetic diversity that exists within each of us, and not just between us as individuals,”...
        05-24-2024, 01:16 PM

      ad_right_rmr

      Collapse

      News

      Collapse

      Topics Statistics Last Post
      Started by seqadmin, 06-07-2024, 06:58 AM
      0 responses
      13 views
      0 likes
      Last Post seqadmin  
      Started by seqadmin, 06-06-2024, 08:18 AM
      0 responses
      23 views
      0 likes
      Last Post seqadmin  
      Started by seqadmin, 06-06-2024, 08:04 AM
      0 responses
      20 views
      0 likes
      Last Post seqadmin  
      Started by seqadmin, 06-03-2024, 06:55 AM
      0 responses
      14 views
      0 likes
      Last Post seqadmin  
      Working...
      X