Skip to content

Commit ea416a8

Browse files
committed
fix: dbgap accession parser
1 parent 911a435 commit ea416a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gen3/external/nih/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
# For more details about this regex, see the function that uses it
88
DBGAP_ACCESSION_REGEX = (
99
"(?P<phsid>phs(?P<phsid_number>[0-9]+))"
10-
"(.(?P<participant_set>p(?P<participant_set_number>[0-9]+))){0,1}"
1110
"(.(?P<version>v(?P<version_number>[0-9]+))){0,1}"
11+
"(.(?P<participant_set>p(?P<participant_set_number>[0-9]+))){0,1}"
1212
"(.(?P<consent>c(?P<consent_number>[0-9]+)+)){0,1}"
1313
)
1414

0 commit comments

Comments
 (0)