Skip to content

Commit

Permalink
remove comment references to deleted file
Browse files Browse the repository at this point in the history
  • Loading branch information
jklugherz committed Nov 25, 2024
1 parent 2bd006c commit 1e29b6d
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 5 deletions.
1 change: 0 additions & 1 deletion v03_pipeline/lib/reference_datasets/dbnsfp.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ def predictor_parse(field: hl.StringExpression) -> hl.StringExpression:
return field.split(';').find(lambda p: p != '.')


# adapted from download_and_create_reference_datasets/v02/hail_scripts/write_dbnsfp_ht.py
def get_ht(path: str, reference_genome: ReferenceGenome) -> hl.Table:
types = TYPES[reference_genome]
rename = RENAME[reference_genome]
Expand Down
1 change: 0 additions & 1 deletion v03_pipeline/lib/reference_datasets/mitomap.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
from v03_pipeline.lib.model import ReferenceGenome


# adapted from download_and_create_reference_datasets/v02/mito/write_mito_mitomap_ht.py
def get_ht(path: str, reference_genome: ReferenceGenome) -> hl.Table:
ht = hl.import_table(
path,
Expand Down
1 change: 0 additions & 1 deletion v03_pipeline/lib/reference_datasets/screen.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
)


# Adapted from download_and_create_reference_datasets/v02/hail_scripts/write_ccREs_ht.py
def get_ht(path: str, reference_genome: ReferenceGenome) -> hl.Table:
with tempfile.NamedTemporaryFile(
suffix='.bed',
Expand Down
1 change: 0 additions & 1 deletion v03_pipeline/lib/reference_datasets/splice_ai.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
from v03_pipeline.lib.reference_datasets.misc import vcf_to_ht


# adapted from download_and_create_reference_datasets/v02/hail_scripts/write_splice_ai.py
def get_ht(
paths: list[str],
reference_genome: ReferenceGenome,
Expand Down
1 change: 0 additions & 1 deletion v03_pipeline/lib/reference_datasets/topmed.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
}


# adapted from download_and_create_reference_datasets/v02/create_ht__topmed.py
def get_ht(path: str, reference_genome: ReferenceGenome) -> hl.Table:
ht = vcf_to_ht(path, reference_genome)
return ht.select(
Expand Down

0 comments on commit 1e29b6d

Please sign in to comment.