-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #224 from ces/BGE
Add fields to iseq_product_metrics for BGE libraries
- Loading branch information
Showing
3 changed files
with
59 additions
and
2 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
-- Add columns for metrics useful for BGE project. | ||
|
||
ALTER TABLE `iseq_product_metrics` \ | ||
ADD COLUMN `mean_bait_target_coverage` float DEFAULT NULL \ | ||
COMMENT 'Mean coverage of the design target regions of a bait library (if used and known)' \ | ||
AFTER `on_or_near_bait_percent`, \ | ||
ADD COLUMN `target_autosome_filter` varchar(30) DEFAULT NULL \ | ||
COMMENT 'Filter used to produce the autosome target stats file' \ | ||
AFTER `target_percent_gt_coverage_threshold`, \ | ||
ADD COLUMN `target_autosome_length` bigint unsigned DEFAULT NULL \ | ||
COMMENT 'The total length of the autosomes only target regions' \ | ||
AFTER `target_autosome_filter`, \ | ||
ADD COLUMN `target_autosome_mapped_bases` bigint unsigned DEFAULT NULL \ | ||
COMMENT 'The number of mapped bases passing the autosome target filters' \ | ||
AFTER `target_autosome_length`; |