Changeset 7865
- Timestamp:
- Oct 21, 2020, 8:26:50 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.17-stable/src/test/net/sf/basedb/test/roles/AnalysisTest.java
r7052 r7865 48 48 import net.sf.basedb.util.overview.Validator; 49 49 import net.sf.basedb.util.overview.Failure; 50 import net.sf.basedb.util.overview.extensions.ValidationRuleAction;51 50 52 51 /** … … 82 81 83 82 ValidationOptions options = new ValidationOptions(); 84 // Expected, since we never specified a biosource for the reference sample and never kit for any item 85 options.setSeverity((ValidationRuleAction)Validator.MISSING_BIOSOURCE, Severity.IGNORE); 86 options.setSeverity((ValidationRuleAction)Validator.MISSING_KIT, Severity.IGNORE); 83 // Expected, since we never specified a biosource for the reference sample and never kit for any item or files for protocols 84 options.setSeverity(Validator.MISSING_BIOSOURCE, Severity.IGNORE); 85 options.setSeverity(Validator.MISSING_KIT, Severity.IGNORE); 86 options.setSeverity(Validator.MISSING_FILE, Severity.IGNORE); 87 87 GenericOverview overview = getExperimentOverview(dc, experiment, 88 88 activeProject, options, 0); 89 89 90 90 // Expected, since the Affymetrix experiment is using a different raw data type 91 options.setSeverity( (ValidationRuleAction)Validator.NONDEFAULT_RAWDATATYPE, Severity.IGNORE);92 options.setSeverity( (ValidationRuleAction)Validator.MISSING_HARDWARE, Severity.IGNORE);93 options.setSeverity( (ValidationRuleAction)Validator.MISSING_PROTOCOL, Severity.IGNORE);94 options.setSeverity( (ValidationRuleAction)Validator.NONMATCHING_SPOTCOUNT, Severity.IGNORE);91 options.setSeverity(Validator.NONDEFAULT_RAWDATATYPE, Severity.IGNORE); 92 options.setSeverity(Validator.MISSING_HARDWARE, Severity.IGNORE); 93 options.setSeverity(Validator.MISSING_PROTOCOL, Severity.IGNORE); 94 options.setSeverity(Validator.NONMATCHING_SPOTCOUNT, Severity.IGNORE); 95 95 GenericOverview affyOverview = getExperimentOverview(dc, affyExperiment, 96 96 activeProject, options, 2); 97 97 98 options.setSeverity( (ValidationRuleAction)Validator.MISSING_ARRAYSLIDE, Severity.IGNORE);99 options.setSeverity( (ValidationRuleAction)Validator.MISSING_TAG, Severity.IGNORE);98 options.setSeverity(Validator.MISSING_ARRAYSLIDE, Severity.IGNORE); 99 options.setSeverity(Validator.MISSING_TAG, Severity.IGNORE); 100 100 // Sequence experiment overview 101 101 GenericOverview seqOverview = getExperimentOverview(dc, seqExperiment,
Note: See TracChangeset
for help on using the changeset viewer.