Open mikegloudemans opened 4 years ago
Currently they can only be split on a single string; i.e
split "chr1:123049" on the ":" string to get chr and pos
It would be better to allow more than one possible split chars, that we we could split
"chr1:123049_AT" on [":", ""] to extract chr, pos, ref, and alt
This would enable parsing
Also will enable munging
Currently they can only be split on a single string; i.e
split "chr1:123049" on the ":" string to get chr and pos
It would be better to allow more than one possible split chars, that we we could split
"chr1:123049_AT" on [":", ""] to extract chr, pos, ref, and alt
This would enable parsing