You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the new addition to the variant calling script, you concatenate the BED files from BCFtools filtering and the depth mask. I noticed you used the uniq command, which I assume you're using to remove redundant positions in the resulting BED file.
However, uniq only filters adjacent matching lines, so the stream needs to be sorted beforehand. You should be able to prepend a sort command before uniq to remove redundant lines. Not terribly critical, but might reduce the size of the resulting file and prevent some issues from and out of spec BED file.
The text was updated successfully, but these errors were encountered:
In the new addition to the variant calling script, you concatenate the BED files from BCFtools filtering and the depth mask. I noticed you used the
uniq
command, which I assume you're using to remove redundant positions in the resulting BED file.illumina-vc/scripts/call_variants.sh
Lines 181 to 182 in fb2c31e
However, uniq only filters adjacent matching lines, so the stream needs to be sorted beforehand. You should be able to prepend a
sort
command beforeuniq
to remove redundant lines. Not terribly critical, but might reduce the size of the resulting file and prevent some issues from and out of spec BED file.The text was updated successfully, but these errors were encountered: