-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add --chromosomes flag to add_variants_id * fixup! Format Python code with psf/black pull_request * Revert "Change actions to us ubuntu-latest" This reverts commit 2f821a8. * Add logging * added compute_plof function, added it to pipeline, created tests * plof cast to int values, tests reflect expected change * added plof column to annotation_colnames_filling_values.yaml file, added test for select_rename_fill function with input containing plof column * reset snakefile to main version * fixup! Format Python code with psf/black pull_request * Update github-actions.yml * Update autoblack_pull_request.yml * Update docs-tests.yml * Update test-runner.yml * Update .readthedocs.yaml * added plof rule to snakefile, updated rulegraph in docs * added test that actually contains plof row --------- Co-authored-by: Magnus Wahlberg <endast@gmail.com> Co-authored-by: PMBio <PMBio@users.noreply.github.com> Co-authored-by: Mück <m991k@b260-pc003.inet.dkfz-heidelberg.de>
- Loading branch information
1 parent
7d92e9b
commit 92ea94d
Showing
14 changed files
with
477 additions
and
438 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
|
@@ -75,3 +75,5 @@ annotation_column_names: | |
'DeepSEA_PC_6' : 0 | ||
'AF' : | ||
'AF' : 0 | ||
'is_plof': | ||
'is_plof' : 0 |
116 changes: 0 additions & 116 deletions
116
pipelines/resources/absplice_splicing_pred_RNA.snakefile
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
Binary file added
BIN
+44.9 KB
tests/annotations/test_data/compute_plof/compute_plof_small/expected/expected.parquet
Binary file not shown.
Binary file added
BIN
+44.2 KB
tests/annotations/test_data/compute_plof/compute_plof_small/input/annotations.parquet
Binary file not shown.
Binary file added
BIN
+41.3 KB
...data/select_rename_fill_columns/select_rename_fill_columns_plof/expected/expected.parquet
Binary file not shown.
65 changes: 65 additions & 0 deletions
65
...ill_columns/select_rename_fill_columns_plof/input/annotation_colnames_filling_values.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
annotation_column_names: | ||
'af' : | ||
'combined_UKB_NFE_AF' : 0 | ||
'maf_mb' : | ||
'combined_UKB_NFE_AF_MB' : 10000 | ||
'maf' : | ||
'combined_UKB_NFE_MAF' : 0 | ||
'PolyPhen' : | ||
'polyphen_score' : 0 | ||
'SIFT' : | ||
'sift_score' : 1 | ||
'QKI_hg2' : | ||
'DeepRipe_plus_QKI_lip_hg2' : 0 | ||
'QKI_k5' : | ||
'DeepRipe_plus_QKI_clip_k5' : 0 | ||
'KHDRBS1_k5' : | ||
'DeepRipe_plus_KHDRBS1_clip_k5' : 0 | ||
'ELAVL1_parclip' : | ||
'DeepRipe_plus_ELAVL1_parclip' : 0 | ||
'TARDBP_parclip' : | ||
'DeepRipe_plus_TARDBP_parclip' : 0 | ||
'HNRNPD_parclip' : | ||
'DeepRipe_plus_HNRNPD_parclip' : 0 | ||
'MBNL1_parclip' : | ||
'DeepRipe_plus_MBNL1_parclip' : 0 | ||
'QKI_parclip' : | ||
'DeepRipe_plus_QKI_parclip' : 0 | ||
'Consequence_splice_acceptor_variant' : | ||
'Consequence_splice_acceptor_variant' : 0 | ||
'Consequence_splice_donor_variant' : | ||
'Consequence_splice_donor_variant' : 0 | ||
'Consequence_stop_gained' : | ||
'Consequence_stop_gained' : 0 | ||
'Consequence_frameshift_variant' : | ||
'Consequence_frameshift_variant' : 0 | ||
'Consequence_stop_lost' : | ||
'Consequence_stop_lost' : 0 | ||
'Consequence_start_lost' : | ||
'Consequence_start_lost' : 0 | ||
'Consequence_inframe_insertion' : | ||
'Consequence_inframe_insertion' : 0 | ||
'Consequence_inframe_deletion' : | ||
'Consequence_inframe_deletion' : 0 | ||
'Consequence_missense_variant' : | ||
'Consequence_missense_variant' : 0 | ||
'Consequence_protein_altering_variant' : | ||
'Consequence_protein_altering_variant' : 0 | ||
'Consequence_splice_region_variant' : | ||
'Consequence_splice_region_variant' : 0 | ||
'DeepSEA_PC_1' : | ||
'DeepSEA_PC_1' : 0 | ||
'DeepSEA_PC_2' : | ||
'DeepSEA_PC_2' : 0 | ||
'DeepSEA_PC_3' : | ||
'DeepSEA_PC_3' : 0 | ||
'DeepSEA_PC_4' : | ||
'DeepSEA_PC_4' : 0 | ||
'DeepSEA_PC_5' : | ||
'DeepSEA_PC_5' : 0 | ||
'DeepSEA_PC_6' : | ||
'DeepSEA_PC_6' : 0 | ||
'AF' : | ||
'AF' : 0 | ||
'is_plof': | ||
'is_plof' : 0 |
Binary file added
BIN
+44.9 KB
...data/select_rename_fill_columns/select_rename_fill_columns_plof/input/annotations.parquet
Binary file not shown.
Binary file added
BIN
+28.7 KB
...ata/select_rename_fill_columns/select_rename_fill_columns_plof2/expected/expected.parquet
Binary file not shown.
65 changes: 65 additions & 0 deletions
65
...ll_columns/select_rename_fill_columns_plof2/input/annotation_colnames_filling_values.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
annotation_column_names: | ||
'af' : | ||
'combined_UKB_NFE_AF' : 0 | ||
'maf_mb' : | ||
'combined_UKB_NFE_AF_MB' : 10000 | ||
'maf' : | ||
'combined_UKB_NFE_MAF' : 0 | ||
'PolyPhen' : | ||
'polyphen_score' : 0 | ||
'SIFT' : | ||
'sift_score' : 1 | ||
'QKI_hg2' : | ||
'DeepRipe_plus_QKI_lip_hg2' : 0 | ||
'QKI_k5' : | ||
'DeepRipe_plus_QKI_clip_k5' : 0 | ||
'KHDRBS1_k5' : | ||
'DeepRipe_plus_KHDRBS1_clip_k5' : 0 | ||
'ELAVL1_parclip' : | ||
'DeepRipe_plus_ELAVL1_parclip' : 0 | ||
'TARDBP_parclip' : | ||
'DeepRipe_plus_TARDBP_parclip' : 0 | ||
'HNRNPD_parclip' : | ||
'DeepRipe_plus_HNRNPD_parclip' : 0 | ||
'MBNL1_parclip' : | ||
'DeepRipe_plus_MBNL1_parclip' : 0 | ||
'QKI_parclip' : | ||
'DeepRipe_plus_QKI_parclip' : 0 | ||
'Consequence_splice_acceptor_variant' : | ||
'Consequence_splice_acceptor_variant' : 0 | ||
'Consequence_splice_donor_variant' : | ||
'Consequence_splice_donor_variant' : 0 | ||
'Consequence_stop_gained' : | ||
'Consequence_stop_gained' : 0 | ||
'Consequence_frameshift_variant' : | ||
'Consequence_frameshift_variant' : 0 | ||
'Consequence_stop_lost' : | ||
'Consequence_stop_lost' : 0 | ||
'Consequence_start_lost' : | ||
'Consequence_start_lost' : 0 | ||
'Consequence_inframe_insertion' : | ||
'Consequence_inframe_insertion' : 0 | ||
'Consequence_inframe_deletion' : | ||
'Consequence_inframe_deletion' : 0 | ||
'Consequence_missense_variant' : | ||
'Consequence_missense_variant' : 0 | ||
'Consequence_protein_altering_variant' : | ||
'Consequence_protein_altering_variant' : 0 | ||
'Consequence_splice_region_variant' : | ||
'Consequence_splice_region_variant' : 0 | ||
'DeepSEA_PC_1' : | ||
'DeepSEA_PC_1' : 0 | ||
'DeepSEA_PC_2' : | ||
'DeepSEA_PC_2' : 0 | ||
'DeepSEA_PC_3' : | ||
'DeepSEA_PC_3' : 0 | ||
'DeepSEA_PC_4' : | ||
'DeepSEA_PC_4' : 0 | ||
'DeepSEA_PC_5' : | ||
'DeepSEA_PC_5' : 0 | ||
'DeepSEA_PC_6' : | ||
'DeepSEA_PC_6' : 0 | ||
'AF' : | ||
'AF' : 0 | ||
'is_plof': | ||
'is_plof' : 0 |
Binary file added
BIN
+30.7 KB
...ata/select_rename_fill_columns/select_rename_fill_columns_plof2/input/annotations.parquet
Binary file not shown.