ASCIIGenome icon indicating copy to clipboard operation
ASCIIGenome copied to clipboard

`print` with `-full` and `-sys` does not print full line

Open dariober opened this issue 8 years ago • 0 comments

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 -full option is ineffective.

This expected behavior is achieved in two steps:

print -full && print -sys 'cut -f1-20'

dariober avatar Jul 22 '17 09:07 dariober