Skip to content

Commit 583d38b

Browse files
committed
Reduce length of description field
1 parent c3bd8dd commit 583d38b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jbrowse/src/org/labkey/jbrowse/pipeline/IndexVariantsStep.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ public Output processVariants(File inputVCF, File outputDirectory, ReferenceGeno
7272
throw new PipelineJobException("Unable to find file: " + idx.getPath());
7373
}
7474

75-
output.addSequenceOutput(idx, "Lucene index: " + inputVCF.getName(), CATEGORY, null, null, genome.getGenomeId(), "Fields indexed: " + infoFieldsRaw);
75+
output.addSequenceOutput(idx, "Lucene index: " + inputVCF.getName(), CATEGORY, null, null, genome.getGenomeId(), "Fields indexed: " + infoFields.size());
7676

7777
return output;
7878
}

0 commit comments

Comments
 (0)