ASCIIGenome
ASCIIGenome copied to clipboard
`print` with `-full` and `-sys` does not print full line
ASCIIGenome CEU.exon.2010_06.genotypes.vcf
print -full -sys 'cut -f1-20'
-
Expected behavior: slice columns 1-20 and print line in full, unclipped.
-
Actual behavior: columns are sliced but printed clipped to screen width. I.e. the
-fulloption is ineffective.
This expected behavior is achieved in two steps:
print -full && print -sys 'cut -f1-20'