Skip to content

Commit 22e7026

Browse files
authored
Merge pull request #170 from jaebeom-kim/master
fix error in regex for --tax-id
2 parents 74f427a + 27f4d7e commit 22e7026

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/commons/LocalParameters.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ LocalParameters::LocalParameters() :
221221
"Tax. ID of clade. -1 for unclassified reads",
222222
typeid(int),
223223
(void *) &targetTaxId,
224-
"^(?:[0-9]+|-1)$"),
224+
"^([0-9]+|-1)$"),
225225
EXTRACT_MODE(EXTRACT_MODE_ID,
226226
"--extract-format",
227227
"0: original format, 1: FASTA, 2: FASTQ",

0 commit comments

Comments
 (0)