I am trying to run a Python script with two inputs as follows. I got ~300 of these two inputs so I wonder if somebody could advise how to run them with parallel.
The single run looks like:
python stable.py KOG_1.fan KOG_1.fasta > KOG_1.stable
My test with parallel which is not working:
ls *.fan; ls *.fasta | parallel python stable.py {} {} > {.}.stable
but how do I specify that is has to run with _1.fan and _1.fasta; then _2.fan and _1.fasta and so on... until _300.fan and _300.fasta.