Changeset 2241
- Timestamp:
- Feb 21, 2014, 8:59:52 AM (9 years ago)
- Location:
- extensions/net.sf.basedb.reggie/trunk/resources
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/net.sf.basedb.reggie/trunk/resources/analysis/sequencing_confirm.jsp
r2236 r2241 55 55 if (lastPoolNum - firstPoolNum == numPools - 1) 56 56 { 57 // Display: PoolN -- PoolY 58 name += flowCell.pools[0].name + ' — ' + flowCell.pools[flowCell.pools.length-1].name; 57 if (numPools > 1) 58 { 59 // Display: PoolN -- PoolY 60 name += flowCell.pools[0].name + ' — ' + flowCell.pools[flowCell.pools.length-1].name; 61 } 62 else 63 { 64 name += flowCell.pools[0].name; 65 } 59 66 } 60 67 else -
extensions/net.sf.basedb.reggie/trunk/resources/libprep/flowcell_registration.jsp
r2222 r2241 57 57 if (lastPoolNum - firstPoolNum == numPools - 1) 58 58 { 59 // Display: PoolN -- PoolY 60 name += flowCell.pools[0].name + ' — ' + flowCell.pools[flowCell.pools.length-1].name; 59 if (numPools > 1) 60 { 61 // Display: PoolN -- PoolY 62 name += flowCell.pools[0].name + ' — ' + flowCell.pools[flowCell.pools.length-1].name; 63 } 64 else 65 { 66 name += flowCell.pools[0].name; 67 } 61 68 } 62 69 else -
extensions/net.sf.basedb.reggie/trunk/resources/libprep/sequencing_ended.jsp
r2236 r2241 56 56 if (lastPoolNum - firstPoolNum == numPools - 1) 57 57 { 58 // Display: PoolN -- PoolY 59 name += flowCell.pools[0].name + ' — ' + flowCell.pools[flowCell.pools.length-1].name; 58 if (numPools > 1) 59 { 60 // Display: PoolN -- PoolY 61 name += flowCell.pools[0].name + ' — ' + flowCell.pools[flowCell.pools.length-1].name; 62 } 63 else 64 { 65 name += flowCell.pools[0].name; 66 } 60 67 } 61 68 else
Note: See TracChangeset
for help on using the changeset viewer.