forked from LabKey/targetedms
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Item 5911: Added tic area as default run scoped metric
* Item 5911 : Add new run scoped metric in qcmetricconfiguration and new column in sample file * Item 5911: Read tic area in skyline doc importer and add in samplefile table * Item 5911: new run scoped metric query and changes in qc plot panel * Item 5911: Hide/Un-hide Show All Series in a single plot checkbox in qc plot web part * Item 5911: upgrading sql scripts and module version * Item 5911: using setVisible to show/hide the checkbox * Item 5911: Include runid in view document link for run scoped metrics * Item 5911: Adding ticarea column in xml * Item 5911: sample data -adding tic area to existing sample data file * Item 5912 : automated test * Fixing automated tests and correcting typo * Item 5912: Re-arranging the order of qc metric configuration deletions on container delete * scroll down to qc plot web part * Item 5912: mouse over data point * adding wait after scroll to the view * Added wiki webpart to scroll into * Moving QC Plots webpart at the top * Removing sleep * moving qc plt webpart down after the test
- Loading branch information
1 parent
c96418d
commit d903f72
Showing
19 changed files
with
233 additions
and
15 deletions.
There are no files selected for viewing
18 changes: 18 additions & 0 deletions
18
resources/queries/targetedms/QCRunMetric_ticArea.query.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<query xmlns="http://labkey.org/data/xml/query"> | ||
<metadata> | ||
<tables xmlns="http://labkey.org/data/xml"> | ||
<table tableName="QCRunMetric_ticArea" tableDbType="NOT_IN_DB"> | ||
<columns> | ||
<column columnName="SampleFileId"> | ||
<fk> | ||
<fkDbSchema>targetedms</fkDbSchema> | ||
<fkTable>SampleFile</fkTable> | ||
<fkColumnName>Id</fkColumnName> | ||
<fkDisplayColumnName>SampleName</fkDisplayColumnName> | ||
</fk> | ||
</column> | ||
</columns> | ||
</table> | ||
</tables> | ||
</metadata> | ||
</query> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
/* | ||
* Copyright (c) 2019 LabKey Corporation | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
SELECT | ||
0 AS PrecursorId, | ||
0 AS PrecursorChromInfoId, | ||
Id AS SampleFileId, | ||
'Total Ion Chromatogram Area' AS SeriesLabel, | ||
NULL AS DataType, | ||
TicArea AS MetricValue, | ||
0.0 AS mz | ||
FROM SampleFile |
22 changes: 22 additions & 0 deletions
22
resources/schemas/dbscripts/postgresql/targetedms-19.21-19.22.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
/* | ||
* Copyright (c) 2019 LabKey Corporation | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
WITH rootIdentity as (select EntityId as theIdentity FROM core.Containers WHERE Parent is null) | ||
|
||
INSERT INTO targetedms.QCMetricConfiguration (Container, Name,Series1Label,Series1SchemaName,Series1QueryName,Series2Label,Series2SchemaName,Series2QueryName,PrecursorScoped) VALUES | ||
((select theIdentity from rootIdentity), 'TIC Area','TIC Area','targetedms','QCRunMetric_ticArea',NULL , NULL , NULL , FALSE ); | ||
|
||
ALTER TABLE targetedms.SampleFile ADD COLUMN TicArea DOUBLE PRECISION; |
24 changes: 24 additions & 0 deletions
24
resources/schemas/dbscripts/sqlserver/targetedms-19.21-19.22.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/* | ||
* Copyright (c) 2019 LabKey Corporation | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
|
||
declare @rootIdentity ENTITYID; | ||
select @rootIdentity = [EntityId] FROM [core].[Containers] WHERE Parent is null | ||
|
||
INSERT INTO targetedms.QCMetricConfiguration (Container, Name, Series1Label, Series1SchemaName, Series1QueryName, PrecursorScoped) | ||
VALUES (@rootIdentity, 'TIC Area','TIC Area','targetedms','QCRunMetric_ticArea', 0); | ||
|
||
ALTER TABLE targetedms.SampleFile ADD TicArea DOUBLE PRECISION; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.