MAINTENANCE OUTAGE: The University Wiki Service will undergo maintenance on Thursday March 23rd from 8:00 p.m. until 10:00 p.m.
During this planned maintenance window, wikis.utexas.edu may be unavailable.
Users are advised to save content locally that may be needed during this time and to save all edits before maintenance begins, as unsaved work may be lost.
Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Expand
Solution
Solution
Code Block
cat input.vcf | grep AF1=1 > output.vcf

Is not practical, since we will lose vital VCF formatting and may not be able to use this file in the futre.

Code Block
cat input.vcf | grep -v AF1=0 > output.vcf

Will preserve all lines that don't have an AF1=0 value and is one way of doing this.

Code Block
sed -i '/AF1=0/ d' input.vcf

Is a better way of doing it inline and not requiring you to make another file.

Code Block
titleResults on Lonestar.
/corral-repl/utexas/BioITeam/ngs_course/mapping/output/bowtie.vcf
/corral-repl/utexas/BioITeam/ngs_course/mapping/output/bwa.vcf

...