Entering edit mode
7.2 years ago
erl1977
▴
60
Hi all, I'm relatively new to bash scripting and working on one to map samples with BWA bash-loop.
My loop is the following:
for i in $(ls *.fastq.gz | rev | cut -c 10- | rev | uniq)
do
./bwa mem -t 60 -c 1 -R '@RG\tID:${i}\tSM:${i}\tPL:illumina\tPU:Lane1\tLB:exome' MyReference.fq ${i}.fastq.gz ${i}.fastq.gz > ${i}.sam
done
The '-R' flag will add the read group info into the sam file. I am having trouble with having the actual sample name being added, rather than it just printed with a '${i}'. I've spending lot's of time googling, and trying to figure this out, but haven't been able to yet. Any advice would be appreciated.
Troubleshooting hint
What is the output of this?
If this does not expands the variable
$i
, then your code is not going to work. Try the suggestion from WouterDeCosterAre you using
1
instead ofi
there?Sorry meant i instead of 1.
Typo on my part - edited the original post