Skip to content

Commit

Permalink
Closes #221
Browse files Browse the repository at this point in the history
  • Loading branch information
necrolyte2 committed Mar 29, 2016
1 parent 0f85f47 commit 999dc98
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ngs_mapper/tagreads.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class HeaderExists(Exception): pass
ID_MAP = (
re.compile( '[0-9A-Z]{14}' ),
re.compile( '[A-Z0-9]{5}:\d{1,}:\d{1,}' ),
re.compile( 'M[0-9]{5}:\d+:\d{9}-[A-Z0-9]{5}:\d:\d{4}:\d{4,5}:\d{4,5}' ),
re.compile( 'M[0-9]{5}:\d+:[\w\d-]+:\d:\d{4}:\d{4,5}:\d{4,5}' ),
re.compile( '.*' )
)
# Read Group Template
Expand Down
3 changes: 2 additions & 1 deletion ngs_mapper/tests/test_tagreads.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,8 @@ def test_miseq( self ):
'M02261:4:000000000-A6FWH:1:2106:7558:24138',
'M02261:4:000000000-A6FWH:1:2106:75581:24138',
'M02261:4:000000000-A6FWH:1:2106:7558:241381',
'M02261:14:000000000-A6481:1:1101:21903:18036'
'M02261:14:000000000-A6481:1:1101:21903:18036',
'M01119:15:AARB3:1:1111:23912:25198',
)
for r in rn:
read = self.mock_read()
Expand Down

0 comments on commit 999dc98

Please sign in to comment.