Skip to content

Commit 6c5590d

Browse files
fix column number
1 parent b565e7e commit 6c5590d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

wdl/MainVcfQc.wdl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -518,7 +518,7 @@ task PlotQcPerSample {
518518
--directory tmp_untar/
519519
find tmp_untar/ -name "*.VIDs_genotypes.txt.gz" | while read FILE; do
520520
bname=$(basename $FILE)
521-
zcat $FILE | awk '$3 != "./."' | gzip -f > ~{prefix}_perSample/$bname
521+
zcat $FILE | awk '$2 != "./."' | gzip -f > ~{prefix}_perSample/$bname
522522
rm $FILE
523523
done
524524

0 commit comments

Comments
 (0)