Changeset 5787
- Timestamp:
- Dec 13, 2019, 11:02:36 AM (2 years ago)
- Location:
- extensions/net.sf.basedb.reggie/trunk/src/net/sf/basedb/reggie
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/net.sf.basedb.reggie/trunk/src/net/sf/basedb/reggie/dao/BiomaterialList.java
r5683 r5787 177 177 "automatically, but it is possible to also manually add items."); 178 178 179 179 /** 180 The definition of the list used for storing merged sequences that 181 should to be processed with the MIPs alignment pipeline. 182 @since 4.25 183 */ 184 public static final BiomaterialList MIPS_ALIGN_PIPELINE = 185 new BiomaterialList("MIPs Alignment Pipeline", "net.sf.basedb.reggie.pipeline.mips-align", 186 Item.DERIVEDBIOASSAY, Subtype.MERGED_SEQUENCES, 187 "This list contains merged sequences items that should be processed with the " + 188 "MIPs alignment pipeline. Items are normally added and removed from this list " + 189 "automatically, but it is possible to also manually add items."); 190 180 191 /** 181 192 Get the bioplate type by name of the static constant defined in this class. -
extensions/net.sf.basedb.reggie/trunk/src/net/sf/basedb/reggie/servlet/InstallServlet.java
r5784 r5787 1108 1108 jsonChecks.add(checkItemList(dc, BiomaterialList.MBAF_PIPELINE, effectivePermissionsWrite, createIfMissing)); 1109 1109 jsonChecks.add(checkItemList(dc, BiomaterialList.VARIANT_CALLING_PIPELINE, effectivePermissionsWrite, createIfMissing)); 1110 jsonChecks.add(checkItemList(dc, BiomaterialList.MIPS_ALIGN_PIPELINE, effectivePermissionsWrite, createIfMissing)); 1110 1111 jsonChecks.add(checkItemList(dc, BiomaterialList.FLAGGED_ALIGNMENT, effectivePermissionsWrite, createIfMissing)); 1111 1112 … … 1150 1151 ItemList mBafPipeline = BiomaterialList.MBAF_PIPELINE.get(dc); 1151 1152 ItemList variantCallingPipeline = BiomaterialList.VARIANT_CALLING_PIPELINE.get(dc); 1153 ItemList mipsAlignPipeline = BiomaterialList.MIPS_ALIGN_PIPELINE.get(dc); 1152 1154 AnnotationType autoProc = Annotationtype.AUTO_PROCESSING.get(dc); 1153 1155 if (autoProc != null) … … 1158 1160 json.put("mBafPipelineDisabled", "Disable".equals(Annotationtype.AUTO_PROCESSING.getAnnotationValue(dc, mBafPipeline))); 1159 1161 json.put("variantCallingPipelineDisabled", "Disable".equals(Annotationtype.AUTO_PROCESSING.getAnnotationValue(dc, variantCallingPipeline))); 1162 json.put("mipsAlignPipelineDisabled", "Disable".equals(Annotationtype.AUTO_PROCESSING.getAnnotationValue(dc, mipsAlignPipeline))); 1160 1163 } 1161 1164 dc.close();
Note: See TracChangeset
for help on using the changeset viewer.