Skip to content

Commit 097c254

Browse files
committed
Reduce length of description field
1 parent e870f7d commit 097c254

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mGAP/src/org/labkey/mgap/pipeline/IndexVariantsForMgapStep.java

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

104-
output.addSequenceOutput(idx, "mGAP Lucene Index: " + releaseVersion, CATEGORY, null, null, genome.getGenomeId(), "Fields indexed: " + infoFieldsRaw);
104+
output.addSequenceOutput(idx, "mGAP Lucene Index: " + releaseVersion, CATEGORY, null, null, genome.getGenomeId(), "Fields indexed: " + infoFields.size());
105105

106106
return output;
107107
}

0 commit comments

Comments
 (0)