Thank you for your help, ole.tange. You are my lifesaver!
You're right, I should use "\n=\n" as delimiter and I also should set record number for parallel.
Finally I managed to run primer3 with parallel. The command line is the following:
cat fasta.p3in | parallel -N10 --round-robin --pipe --recend "\n=\n" /Tools/primer3/primer3-2.3.6/src/primer3_core > fasta.p3out
what would typical command line (without parallel) look like? would it be something like
as a sidenote, have you looked through the parallel guide? Gnu Parallel - Parallelize Serial Command Line Programs Without Changing Them
Hi, Ying W:
Thanks.
I've read through Gnu Parallel tutorial and the post Gnu Parallel - Parallelize Serial Command Line Programs Without Changing Them..
The command I used is according to the BLAT example in the biostar post.
The command line (without parallel) of primer3 is:
and the record in
*.p3in(primer3 input format) is:There's a '=' at the end of each record
Any ideas?