From ea416a82847429ca9842e722b662e0d93b67b685 Mon Sep 17 00:00:00 2001 From: WilsonnnTan Date: Tue, 10 Feb 2026 00:36:34 +0700 Subject: [PATCH] fix: dbgap accession parser --- gen3/external/nih/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gen3/external/nih/utils.py b/gen3/external/nih/utils.py index e01eb304f..e07cfcc6a 100644 --- a/gen3/external/nih/utils.py +++ b/gen3/external/nih/utils.py @@ -7,8 +7,8 @@ # For more details about this regex, see the function that uses it DBGAP_ACCESSION_REGEX = ( "(?Pphs(?P[0-9]+))" - "(.(?Pp(?P[0-9]+))){0,1}" "(.(?Pv(?P[0-9]+))){0,1}" + "(.(?Pp(?P[0-9]+))){0,1}" "(.(?Pc(?P[0-9]+)+)){0,1}" )