I have multiple pairs of files that differ only in one number:
121_S11_L001_R1_001
121_S11_L001_R2_001
and another pair relative to other files, differ in multiple numbers, but relative to its pair, again only in one number:
120_S10_L001_R1_001
120_S10_L001_R2_001
I have a bash script to process these files individually:
if [ -s $infile ] && [ ! -s $infile.bwa ]; then
echo "Creating BWA file..."
time bwa aln $path"Genomeidx" $infile > $infile.bwa
time bwa aln $path"Genomeidx" $infile2 > $infile2.bwa
Where 'infile' and 'infile2' are files specified on the command line
Instead of manually typing each pair, how do I recursively select and process each file for each pair?