Skip to content

Commit

Permalink
Accept numeric sequence names in nexus parser
Browse files Browse the repository at this point in the history
  • Loading branch information
fredericlemoine committed Jul 4, 2018
1 parent c4790bd commit 3d9aa68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion io/nexus/nexus_parser.go
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ func (p *Parser) parseData() (names []string, sequences map[string]string, nchar
for !stopmatrix {
tok2, lit2 := p.scanIgnoreWhitespace()
switch tok2 {
case IDENT:
case IDENT, NUMERIC:
// We remove whitespaces in sequences if any
// and take into account possibly interleaved
// sequences
Expand Down

0 comments on commit 3d9aa68

Please sign in to comment.