Skip to content

Commit 39737a0

Browse files
committed
Allow for space in HTML
1 parent 87dffd7 commit 39737a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

singlecell/src/org/labkey/singlecell/run/CellRangerGexCountStep.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -693,7 +693,7 @@ public static Chemistry inferChemistry(File cloupeFile) throws PipelineJobExcept
693693
throw new IllegalArgumentException("Missing file: " + html.getPath());
694694
}
695695

696-
final Pattern pattern = Pattern.compile("\\[\"Chemistry\",\"(.*?)\"],");
696+
final Pattern pattern = Pattern.compile("\\[\"Chemistry\",[ ]{0,1}\"(.*?)\"],");
697697
try (BufferedReader reader = Readers.getReader(html))
698698
{
699699
String line;

0 commit comments

Comments
 (0)