Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding MIP validation cases to fastq.py #771

Merged
merged 16 commits into from Sep 29, 2020
5 changes: 5 additions & 0 deletions CHANGELOG.md
Expand Up @@ -15,6 +15,11 @@ Try to use the following format:

### Fixed

## [12.6.1]

### Added
- Added validation cases to problematic cases

## [12.6.0]

### Added
Expand Down
32 changes: 32 additions & 0 deletions cg/cli/compress/fastq.py
Expand Up @@ -16,6 +16,7 @@
LOG = logging.getLogger(__name__)

# There is a list of problematic cases that we should skip
# The list also includes samples used to validate MIP (amsystems 1490:12)
PROBLEMATIC_CASES = [
"modernbee",
"suremako",
Expand All @@ -28,6 +29,37 @@
"loyalegret",
"grandkoi",
"fluenteagle",
"mintyeti",
"topsrhino",
"gladthrush",
"cleanshrimp",
"usablemarten",
"casualgannet",
"pumpedcat",
"firstfawn",
"helpedfilly",
"daringpony",
"strongbison",
"proeagle",
"easybeetle",
"sharppigeon",
"gamedeer",
"keencalf",
"epicasp",
"safeguinea",
"hotviper",
"hotskink",
"onemite",
"busycolt",
"rightmacaw",
"intentcorgi",
"vitalmouse",
"lightprawn",
"meetpossum",
"strongman",
"mintbaboon",
"propercoral",
"livingox",
]


Expand Down