I have set of sam files and I would like to convert them into bam files with the following script. But it didn't create bam files? What I have made wrong?
for file in `ls ~/wgs/sam`;
do
~/bin/samtools-0.1.18/samtools view -bS ~/wgs/sam/$file \
> ~/wgs/bam/$FILE.bam;
done
Çould you comment on whether any files are created at all? If yes, what type of files are they?
Actually, I had a typo in my script. Here is the right one. Sorry about that.
You use
$file
to define the SAM file, yet$FILE
for the BAM.s/$FILE/$file/
and you should be good.As a result, I had bam files for each sam files.
And that's what you wanted, right
yes, Andreas, problem solved.