We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53842b6 commit 6590d61Copy full SHA for 6590d61
singlecell/src/org/labkey/singlecell/run/CellRangerVDJWrapper.java
@@ -220,6 +220,19 @@ else if (doGDParsing() && "TRG".equalsIgnoreCase(locus))
220
name = name.replaceAll("TRG", locus) + suffix;
221
}
222
223
+ // Special-case TRAVxx/DVxx lineages:
224
+ if (lineage.startsWith("TRA") && lineage.contains("DV") && !lineage.contains("/DV"))
225
+ {
226
+ if (lineage.contains("-DV"))
227
228
+ lineage = lineage.replace("-DV", "/DV");
229
+ }
230
+ else
231
232
+ lineage = lineage.replace("DV", "/DV");
233
234
235
+
236
StringBuilder header = new StringBuilder();
237
header.append(">").append(i.get()).append("|").append(name).append(" ").append(lineage).append("|").append(lineage).append("|");
238
//translate into V_Region
0 commit comments