Skip to content

Commit

Permalink
variant-annotator: get genome release from config for use in wrapper.
Browse files Browse the repository at this point in the history
  • Loading branch information
eudesbarbosa committed May 2, 2022
1 parent d50b85d commit 9a5b739
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions snappy_pipeline/workflows/variant_export/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@
path_variant_calling: ../variant_calling
tools_ngs_mapping: null
tools_variant_calling: null
release: GRCh37 # REQUIRED: default 'GRCh37'
path_exon_bed: REQUIRED # REQUIRED: exon BED file to use when handling WGS data
path_refseq_ser: REQUIRED # REQUIRED: path to RefSeq .ser file
path_ensembl_ser: REQUIRED # REQUIRED: path to ENSEMBL .ser file
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
annotation_args = []

# TODO: care about case of WGS data
# TODO: properly handle release
# TODO: remove case ID parameter from annotator

shell(
Expand Down Expand Up @@ -81,7 +80,7 @@
-XX:MaxHeapSize=10g \
-XX:+UseConcMarkSweepGC \
\
--release GRCh37 \
--release {export_config[release]} \
\
--ref-path {snakemake.config[static_data_config][reference][path]} \
--db-path {export_config[path_db]} \
Expand Down

0 comments on commit 9a5b739

Please sign in to comment.