File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed
colormipsearch-tools/src/main/java/org/janelia/colormipsearch/cmd Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -91,6 +91,12 @@ static class ValidateCmdArgs extends AbstractCmdArgs {
9191 variableArity = true )
9292 List <String > validatedNames = new ArrayList <>();
9393
94+ @ Parameter (names = {"--validated-mips" },
95+ listConverter = ListValueAsFileArgConverter .class ,
96+ description = "If set only validate the specified mipIds" ,
97+ variableArity = true )
98+ List <String > validatedMipIds = new ArrayList <>();
99+
94100 @ Parameter (names = {"--excluded-libraries" },
95101 description = "Library names that a neuron should not be part of" ,
96102 variableArity = true )
@@ -183,6 +189,7 @@ private void runDataValidation() {
183189 .setAlignmentSpace (args .alignmentSpace )
184190 .addSourceRefIds (args .validatedSamples )
185191 .addNames (args .validatedNames )
192+ .addMipIDs (args .validatedMipIds )
186193 .addDatasetLabels (args .validatedReleases )
187194 .addTags (args .validatedTags )
188195 .addLibraries (args .libraries ),
You can’t perform that action at this time.
0 commit comments