Skip to content

Commit c26fe1d

Browse files
committed
Merge branch 'dev' of github.com:broadinstitute/seqr-loading-pipelines into benb/single_callset_path
2 parents 56c341e + 7a9094c commit c26fe1d

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

v03_pipeline/lib/tasks/__init__.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
from v03_pipeline.lib.tasks.delete_family_table import DeleteFamilyTableTask
2+
from v03_pipeline.lib.tasks.delete_family_tables import DeleteFamilyTablesTask
3+
from v03_pipeline.lib.tasks.delete_project_family_tables import (
4+
DeleteProjectFamilyTablesTask,
5+
)
6+
from v03_pipeline.lib.tasks.delete_project_table import DeleteProjectTableTask
17
from v03_pipeline.lib.tasks.reference_data.update_cached_reference_dataset_queries import (
28
UpdateCachedReferenceDatasetQueries,
39
)
@@ -11,6 +17,9 @@
1117
UpdateLookupTableWithDeletedProjectTask,
1218
)
1319
from v03_pipeline.lib.tasks.update_project_table import UpdateProjectTableTask
20+
from v03_pipeline.lib.tasks.update_project_table_with_deleted_families import (
21+
UpdateProjectTableWithDeletedFamiliesTask,
22+
)
1423
from v03_pipeline.lib.tasks.update_variant_annotations_table_with_deleted_families import (
1524
UpdateVariantAnnotationsTableWithDeletedFamiliesTask,
1625
)
@@ -26,7 +35,12 @@
2635
)
2736

2837
__all__ = [
38+
'DeleteFamilyTableTask',
39+
'DeleteFamilyTablesTask',
40+
'DeleteProjectFamilyTablesTask',
41+
'DeleteProjectTableTask',
2942
'UpdateProjectTableTask',
43+
'UpdateProjectTableWithDeletedFamiliesTask',
3044
'UpdateLookupTableTask',
3145
'UpdateLookupTableWithDeletedProjectTask',
3246
'UpdateLookupTableWithDeletedFamiliesTask',

v03_pipeline/var/vep_config/vep-GRCh38.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"command": [
33
"bash",
44
"-c",
5-
"/vep --format vcf -json --hgvs --biotype --canonical --mane --minimal --numbers --regulatory --allele_number --no_stats --cache --offline --assembly GRCh38 --fasta /opt/vep/.vep/Homo_sapiens.GRCh38.dna.primary_assembly.fa.gz --check_ref --dont_skip --plugin LoF,loftee_path:/plugins,gerp_bigwig:/opt/vep/.vep/gerp_conservation_scores.homo_sapiens.GRCh38.bw,human_ancestor_fa:/opt/vep/.vep/human_ancestor.fa.gz,conservation_file:/opt/vep/.vep/loftee.sql --plugin UTRAnnotator,file=/opt/vep/.vep/uORF_5UTR_GRCh38_PUBLIC.txt --plugin SpliceRegion,Extended --plugin AlphaMissense,file=/opt/vep/.vep/AlphaMissense_hg38.tsv.gz --dir_plugins /plugins -o STDOUT | sed s/5utr/fiveutr/g"
5+
"/vep --warning_file STDERR --format vcf -json --hgvs --biotype --canonical --mane --minimal --numbers --regulatory --allele_number --no_stats --cache --offline --assembly GRCh38 --fasta /opt/vep/.vep/Homo_sapiens.GRCh38.dna.primary_assembly.fa.gz --check_ref --dont_skip --plugin LoF,loftee_path:/plugins,gerp_bigwig:/opt/vep/.vep/gerp_conservation_scores.homo_sapiens.GRCh38.bw,human_ancestor_fa:/opt/vep/.vep/human_ancestor.fa.gz,conservation_file:/opt/vep/.vep/loftee.sql --plugin UTRAnnotator,file=/opt/vep/.vep/uORF_5UTR_GRCh38_PUBLIC.txt --plugin SpliceRegion,Extended --plugin AlphaMissense,file=/opt/vep/.vep/AlphaMissense_hg38.tsv.gz --dir_plugins /plugins -o STDOUT | sed s/5utr/fiveutr/g"
66
],
77
"env": {
88
"PERL5LIB": "/plugins"

0 commit comments

Comments
 (0)