Skip to content

Commit 0e30fc4

Browse files
committed
Update to match new NextClade format
1 parent 914387b commit 0e30fc4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SequenceAnalysis/src/org/labkey/sequenceanalysis/run/analysis/NextCladeHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ public static void processAndImportNextCladeAa(PipelineJob job, File jsonFile, i
274274

275275
String aaName = aa.getString("gene");
276276

277-
JSONObject range = aa.getJSONObject("nucRange");
277+
JSONObject range = aa.getJSONObject("codonNucRange");
278278
List<Integer> positions = new ArrayList<>();
279279
//Range is 0-based
280280
for (int p = range.getInt("begin") + 1;p <= range.getInt("end"); p++)

0 commit comments

Comments
 (0)