Hi, I read this post (http://biofinysics.blogspot.com.au/2014/05/how-does-bowtie2-assign-mapq-scores.html) which describes on how to filter Bowtie 2 alignment with the following command:
awk '$5 == 3 || $5 == 8 || $5 == 23 || $5 == 24 || $5 == 40 || $5 == 42' file.sam
The idea behind the command is to get "unireads" with decent alignment scores.
How is it possible to convert the above awk command in Galaxy?
Mic