Unconfigured Ad

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • yaximik
    Senior Member
    • Apr 2011
    • 199

    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?
  • mdobeson
    Junior Member
    • Jan 2012
    • 6

    #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

    • tange
      Junior Member
      • Feb 2013
      • 7

      #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

      • 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
      • GATTACAT
        Reply to Nine Things a Sample Prep Scientist Thinks About Before Sequencing
        by GATTACAT
        Love this - good data definitely starts from good input, and poor input can only give relatively poor data. I particularly like the mention of Nanodrop/absorbance based methods for quantification. It's such a toss up if you'll get an accurate reading or what amounts to a randomly generated number, and a lot of library/sequencing related issues can be traced back to poor quant.
        07-01-2026, 11:43 AM

      ad_right_rmr

      Collapse

      News

      Collapse

      Topics Statistics Last Post
      Started by SEQadmin2, 07-13-2026, 10:26 AM
      0 responses
      28 views
      0 reactions
      Last Post SEQadmin2  
      Started by SEQadmin2, 07-09-2026, 10:04 AM
      0 responses
      37 views
      0 reactions
      Last Post SEQadmin2  
      Started by SEQadmin2, 07-08-2026, 10:08 AM
      0 responses
      25 views
      0 reactions
      Last Post SEQadmin2  
      Started by SEQadmin2, 07-07-2026, 11:05 AM
      0 responses
      35 views
      0 reactions
      Last Post SEQadmin2  
      Working...