I want to download a bulk amount of SRA files with sra-toolkit with a bash scripting code but it is not working can it be fixed?
#!/bin/sh
input="/home/omic/Downloads/peanut16s/input.txt"
while IFS= read -r line
do
echo "fasterq-dump --split-3 $line -O FASTQ_files/"
done
content of input is like the following-
SRR5790113
SRR5790112
SRR5790110
SRR5790105
SRR5790102
SRR10993629
SRR10993630
SRR10993631
SRR8324681
SRR7053176
What is not working?
Thank you so much for your response GenoMax sir, I was up to you but I can't see my jobs being done eg. No sra file being downloaded.