-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
48 additions
and
29 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
README.md |
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,45 @@ | ||
# QC Checks and Metrics for Illumina Next Generation Sequencing Data | ||
|
||
## Listing of Directories | ||
|
||
### lib | ||
|
||
- npg_qc::Schema namespace - DBIx ORM | ||
- npg_qc::illumina namespace - db loaders for Illumina QC metrics | ||
- npg_qc::autoqc namespace - WSI core sequencing pipeline in-house | ||
QC checks and storage of QC metrics | ||
- npg_qc::mqc - evaluation an dreporting of QC metrics | ||
|
||
### bin | ||
|
||
Perl scripts which are deployed to the production environment | ||
|
||
### scripts | ||
|
||
Supplimentary scripts, not deployed | ||
|
||
### t | ||
|
||
Tests, test data, supplimentary scripts and modules for testing | ||
|
||
### npg_qc_viewer | ||
|
||
Source code for the web server that displays the QC metrics | ||
|
||
### docs | ||
|
||
Documentation, useful code snippets | ||
|
||
## NPG QC database | ||
|
||
### Legacy Data | ||
|
||
QC metrics and evaluation outcomes for all production Illumina sequensing runs | ||
are stored in a relational database. This database has four legacy tables, | ||
`recipe_file`, `run_and_pair`, `run_info`, `run_recipe`, for which we do not | ||
generate ORM classes. No code is using these tables. The data is kept for | ||
auditing perposes. The size of these tables is small in comparison with the size | ||
of the rest of the tables. The overhead of moving these old tables to a different | ||
storage is not justified. | ||
|
||
|