Yeah, Thank you so much GenoMax sir, I was using this script for paired-end SRA file download that's why I use --split-3. My code was not running because I put echo after do and my command into a double inverted comma. Now my code is running perfectly fine. Thank you so much sir for rectifying me. my corrected code is the following.
#!/bin/bash
input="/home/omics/Downloads/peanut16s/input.txt"
while read -r line; do fasterq-dump --split-files $line -O FASTQ_files; done < $input
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.