Changeset 2087
- Timestamp:
- Oct 18, 2013, 1:42:49 PM (9 years ago)
- Location:
- extensions/net.sf.basedb.reggie/trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/net.sf.basedb.reggie/trunk/resources/libprep/create_flowcells.jsp
r2085 r2087 703 703 <table> 704 704 <tr valign="top"> 705 <td class="prompt"> Number of reads</td>705 <td class="prompt">Sequencing cycles</td> 706 706 <td class="input">(planned)</td> 707 707 <td class="status"></td> 708 708 <td class="help" rowspan="4"> 709 Planned number of reads. The actual numbers used may be changed in the709 Planned number of sequencing cycles. The actual numbers used may be changed in the 710 710 registration wizard.<br> 711 711 </td> -
extensions/net.sf.basedb.reggie/trunk/resources/libprep/flowcell_protocol2.jsp
r2086 r2087 130 130 setInnerHTML('flowCellName2.'+flowCellNo, flowCellName); 131 131 setInnerHTML('flowCellDescription.'+flowCellNo, flowCell.description); 132 setInnerHTML('sequenc eString.'+flowCellNo, flowCell.SequenceString);132 setInnerHTML('sequencingCycles.'+flowCellNo, flowCell.SequencingCycles); 133 133 setInnerHTML('flowCellId.'+flowCellNo, flowCell.externalId); 134 134 var flowCellLanes = flowCell['lanes']; … … 351 351 <th></th> 352 352 <th style="width: 20%; border-right: 0;">HiSeq position</th> 353 <th>Sequenc eString(Read 1 - Index - Read 2)</th>353 <th>Sequencing cycles (Read 1 - Index - Read 2)</th> 354 354 </tr> 355 355 … … 363 363 <th id="flowCellName2.<%=c%>" class="subprompt">Flowcell<%=c %></th> 364 364 <td><b><div class="colorbox"></div>A <div class="colorbox"></div>B</b></td> 365 <td><div id="sequenc eString.<%=c%>">SequenceString</div></td>365 <td><div id="sequencingCycles.<%=c%>"></div></td> 366 366 </tr> 367 367 <% -
extensions/net.sf.basedb.reggie/trunk/src/net/sf/basedb/reggie/dao/Annotationtype.java
r2085 r2087 589 589 590 590 /** 591 The "Sequenc eString" annotation, used for physical bioassays (FlowCell).592 @since 2.13 593 */ 594 public static final Annotationtype SEQUENC E_STRING=595 new Annotationtype("Sequenc eString", Type.STRING, Item.PHYSICALBIOASSAY);591 The "SequencingCycles" annotation, used for physical bioassays (FlowCell). 592 @since 2.13 593 */ 594 public static final Annotationtype SEQUENCING_CYCLES = 595 new Annotationtype("SequencingCycles", Type.STRING, Item.PHYSICALBIOASSAY); 596 596 597 597 -
extensions/net.sf.basedb.reggie/trunk/src/net/sf/basedb/reggie/servlet/FlowCellServlet.java
r2086 r2087 197 197 fc.setAnnotation("description", physBA.getDescription()); 198 198 fc.setAnnotation("numLanes", physBA.getSize()); 199 fc.loadAnnotations(dc, "Sequenc eString", Annotationtype.SEQUENCE_STRING, null);199 fc.loadAnnotations(dc, "SequencingCycles", Annotationtype.SEQUENCING_CYCLES, null); 200 200 fc.loadAnnotations(dc, "externalId", Annotationtype.FLOWCELL_ID, null); 201 201 … … 258 258 Number read2 = (Number)jsonReq.get("read2"); 259 259 // Sequence string is concatenated: read1-index-read2 260 String sequenc eString= read1 + "-" + indexRead + "-" + read2;260 String sequencingCycles = read1 + "-" + indexRead + "-" + read2; 261 261 262 262 dc = sc.newDbControl(); … … 277 277 flowCell.setSize(jsonLanes.size()); 278 278 dc.saveItem(flowCell); 279 Annotationtype.SEQUENC E_STRING.setAnnotationValue(dc, flowCell, sequenceString);279 Annotationtype.SEQUENCING_CYCLES.setAnnotationValue(dc, flowCell, sequencingCycles); 280 280 281 281 Map<Number, Extract> poolCache = new HashMap<Number, Extract>(); -
extensions/net.sf.basedb.reggie/trunk/src/net/sf/basedb/reggie/servlet/InstallServlet.java
r2085 r2087 290 290 jsonChecks.add(checkAnnotationType(dc, Annotationtype.CLUSTER_OPERATOR, 1, null, effectiveOptions, createIfMissing)); 291 291 jsonChecks.add(checkAnnotationType(dc, Annotationtype.READ_STRING, 1, null, effectiveOptions, createIfMissing)); 292 jsonChecks.add(checkAnnotationType(dc, Annotationtype.SEQUENC E_STRING, 1, null, effectiveOptions, createIfMissing));292 jsonChecks.add(checkAnnotationType(dc, Annotationtype.SEQUENCING_CYCLES, 1, null, effectiveOptions, createIfMissing)); 293 293 jsonChecks.add(checkAnnotationType(dc, Annotationtype.HISEQ_POSITION, 1, 294 294 new ValueOptions("A", "B"), … … 375 375 jsonChecks.add(checkAnnotationTypeCategory(dc, Subtype.FLOW_CELL, createIfMissing, 376 376 Annotationtype.FLOWCELL_ID, Annotationtype.CLUSTER_START, Annotationtype.CLUSTER_OPERATOR, 377 Annotationtype.SEQUENC E_STRING, Annotationtype.READ_STRING, Annotationtype.HISEQ_POSITION,377 Annotationtype.SEQUENCING_CYCLES, Annotationtype.READ_STRING, Annotationtype.HISEQ_POSITION, 378 378 Annotationtype.PLATE_PROCESS_RESULT)); 379 379
Note: See TracChangeset
for help on using the changeset viewer.