Entering edit mode
8.9 years ago
sanjeet00001992
•
0
Hi all
I am using a shell command for converting xml file format to gff file format
./interproscan.sh -mode convert -f gff3 -i input.xml -b output.gff
which converts an xml file to gff format. But the problem is I am able to run single sequence file at a time. And I have to work on hundred of sequences, which will take much time.
so I want to run this programme for a batch search at a time. how I can manage to do so. I know basic shell command but not able to run a command in loop.
are the files catchable by a loop? i.e. have they got something/anything exclusively in common?
see Bash Loop For Job Submission , How To Run Muscle In Batch? , etc....