-
Notifications
You must be signed in to change notification settings - Fork 2
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 #62 from genomic-medicine-sweden/develop
chore: dev to master first relaese
- Loading branch information
Showing
91 changed files
with
402,872 additions
and
163 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,20 @@ | ||
### This PR: | ||
|
||
(If this is a release PR, no need to add following. Leave this part empty) | ||
(Use the following lines to create a PR text body. Make sure to remove all non-relevant one after you're done) | ||
(Repeat each field as many times as necessary) | ||
|
||
Added: for new features. | ||
Changed: for changes in existing functionality. | ||
Deprecated: for soon-to-be removed features. | ||
Removed: for now removed features. | ||
Fixed: for any bug fixes. | ||
Security: in case of vulnerabilities. | ||
|
||
### Review and tests: | ||
- [ ] Tests pass | ||
- [ ] If you've fixed a bug or added code that should be tested, add tests! | ||
- [ ] Code review | ||
- [ ] `CHANGELOG.md` is updated | ||
- [ ] New code is executed and covered by tests, and test approve | ||
- [ ] Module compatibility section in `README.md` is up to date |
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 |
---|---|---|
|
@@ -20,12 +20,18 @@ jobs: | |
name: Lint workflow | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out the repo | ||
uses: actions/checkout@v2 | ||
- name: Linting | ||
uses: snakemake/[email protected] | ||
- uses: actions/checkout@v3 | ||
- name: Set up Python 3.8 | ||
uses: actions/setup-python@v3 | ||
with: | ||
directory: ".tests/integration" | ||
snakefile: "workflow/Snakefile" | ||
args: "--lint" | ||
stagein: "pip install -r requirements.txt" | ||
python-version: 3.8 | ||
- name: Add conda to system path | ||
run: | | ||
echo $CONDA/bin >> $GITHUB_PATH | ||
- name: Install requirements.txt | ||
run: | | ||
pip install -r requirements.txt | ||
- name: Linting | ||
working-directory: .tests/integration | ||
run: | | ||
snakemake --lint -n -s ../../workflow/Snakefile --configfile config/config.yaml |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,15 @@ | ||
.eggs | ||
__pycache__ | ||
.snakemake | ||
.snakemake/ | ||
.tests/integration/.snakemake/ | ||
describe_workflow.rst | ||
describe_jupyter_notebook.txt | ||
pgx | ||
pgx/ | ||
data/ | ||
prealignment/ | ||
alignment/ | ||
snv_indels/ | ||
logs/ | ||
tmp/ | ||
*.bai | ||
*.tsv |
Binary file not shown.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
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,82 @@ | ||
resources: "config/resources.yaml" | ||
samples: "samples.tsv" | ||
units: "units.tsv" | ||
output: "../../config/output_files.yaml" | ||
|
||
default_container: "docker://hydragenetics/common:0.3.0" | ||
|
||
trimmer_software: "fastp_pe" | ||
|
||
bwa_mem: | ||
container: "docker://hydragenetics/bwa_mem:0.7.17" | ||
amb: "reference/hg19.chr6.fasta.amb" | ||
ann: "reference/hg19.chr6.fasta.ann" | ||
bwt: "reference/hg19.chr6.fasta.bwt" | ||
pac: "reference/hg19.chr6.fasta.pac" | ||
sa: "reference/hg19.chr6.fasta.sa" | ||
|
||
fastp_pe: | ||
container: "docker://hydragenetics/fastp:0.20.1" | ||
|
||
picard_mark_duplicates: | ||
container: "docker://hydragenetics/picard:2.25.0" | ||
|
||
haplotypecaller: | ||
container: "docker://hydragenetics/gatk4:4.1.9.0" | ||
extra: "--dbsnp reference/dbsnp_138.sub.vcf.gz --standard-min-confidence-threshold-for-calling 1.0" | ||
|
||
get_padded_bed: | ||
padding: 100 | ||
|
||
picard_mark_duplicates: | ||
container: "docker://hydragenetics/picard:2.25.0" | ||
|
||
snv_indels_haplotypecaller: | ||
container: "docker://hydragenetics/gatk4:4.1.9.0" | ||
|
||
variant_filtration: | ||
read_ratio: 0.2 | ||
read_depth: 100 | ||
|
||
variant_annotator: | ||
container: "docker://hydragenetics/gatk4:4.1.9.0" | ||
|
||
detected_variants: | ||
file_type: "VCF" | ||
|
||
sample_target_list: | ||
padding: 0 | ||
|
||
get_padded_baits: | ||
padding: 100 | ||
file_format: "list" | ||
|
||
depth_of_baits: | ||
container: "docker://hydragenetics/gatk4:4.1.9.0" | ||
extra: "--output-format TABLE" | ||
|
||
depth_of_targets: | ||
container: "docker://hydragenetics/gatk4:4.1.9.0" | ||
extra: "--output-format TABLE" | ||
|
||
append_id_to_gdf: | ||
file_type: "GDF" | ||
|
||
get_clinical_guidelines: | ||
haplotype_definitions: "reference/haplotype_definitions.csv" | ||
haplotype_activity: "reference/haplotype_activity_score.csv" | ||
clinical_guidelines: "reference/clinical_guidelines.csv" | ||
hidden_haplotypes: "reference/hidden_haplotypes.csv" | ||
|
||
get_interaction_guidelines: | ||
interaction_guidelines: "reference/interaction_guidelines.csv" | ||
|
||
reference: | ||
design_bed: "reference/exons_variants_pharmacogenomics.TPMT.bed" | ||
design_rsid: "reference/target_rsid.TPMT.bed" | ||
fasta: "reference/hg19.chr6.fasta" | ||
fai: "reference/hg19.chr6.fasta.fai" | ||
dbsnp: "reference/dbsnp_138.sub.vcf.gz" | ||
|
||
generate_pgx_report: | ||
report_template: "reference/report_template.txt" |
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,9 @@ | ||
default_resources: | ||
threads: 1 | ||
time: "12:00:00" | ||
mem_mb: 1024 | ||
mem_per_cpu: 3072 | ||
partition: core | ||
|
||
haplotypecaller: | ||
threads: 8 |
Binary file not shown.
Binary file not shown.
Oops, something went wrong.