Skip to content

Commit af55c44

Browse files
committed
Add column to track # responding clones
1 parent c2e813b commit af55c44

File tree

6 files changed

+8
-1
lines changed

6 files changed

+8
-1
lines changed

tcrdb/resources/queries/tcrdb/stims/.qview.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
<column name="quantificationMethod" />
1212
<column name="flowQuantification" />
1313
<column name="flowQuantificationMethod" />
14+
<column name="nClones" />
1415
<column name="comment" />
1516
<column name="workbook" />
1617
</columns>

tcrdb/resources/queries/tcrdb/stims/Cohort Info.qview.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
<column name="quantificationMethod" />
1212
<column name="flowQuantification" />
1313
<column name="flowQuantificationMethod" />
14+
<column name="nClones" />
1415
<column name="comment" />
1516
<column name="cDNA_ID/sortId/sampleId/allProjects/projects" />
1617
<column name="workbook" />
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ALTER TABLE tcrdb.stims ADD nClones int;
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ALTER TABLE tcrdb.stims ADD nClones int;

tcrdb/resources/schemas/tcrdb.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -320,6 +320,9 @@
320320
<column columnName="flowQuantification">
321321
<columnTitle>Flow Quantification</columnTitle>
322322
</column>
323+
<column columnName="nClones">
324+
<columnTitle># Clones</columnTitle>
325+
</column>
323326
<column columnName="comment">
324327

325328
</column>

tcrdb/src/org/labkey/tcrdb/TCRdbModule.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public String getName()
4646
@Override
4747
public Double getSchemaVersion()
4848
{
49-
return 15.56;
49+
return 15.57;
5050
}
5151

5252
@Override

0 commit comments

Comments
 (0)