Skip to content

Commit

Permalink
Merge pull request #222 from jaredbischof/master
Browse files Browse the repository at this point in the history
 Updated fasta regex to not require return at end of first line of sequence in case of fasta files with really long sequences in a single line.
  • Loading branch information
jaredbischof committed Sep 2, 2014
2 parents eecf174 + 4fc49be commit 8daa2ad
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.8.24
0.9
2 changes: 1 addition & 1 deletion shock-server/node/file/format/fasta/fasta.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import (
)

var (
Regex = regexp.MustCompile(`^[\n\r]*>\S+[\S\t ]*[\n\r]+[A-Za-z\- ]+[\n\r]+`)
Regex = regexp.MustCompile(`^[\n\r]*>\S+[\S\t ]*[\n\r]+[A-Za-z\- ]+`)
)

// Fasta sequence format reader type.
Expand Down

0 comments on commit 8daa2ad

Please sign in to comment.