We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0600039 commit d77a4e6Copy full SHA for d77a4e6
v03_pipeline/lib/reference_data/config.py
@@ -198,7 +198,7 @@ def custom_mpc_select(ht):
198
'pathogenicity': CLINVAR_PATHOGENICITIES,
199
'assertion': CLINVAR_ASSERTIONS,
200
},
201
- 'filter': lambda ht: ~(ht.locus.contig == 'MT'),
+ 'filter': lambda ht: ht.locus.contig != 'MT',
202
203
'38': {
204
'custom_import': download_and_import_latest_clinvar_vcf,
@@ -209,7 +209,7 @@ def custom_mpc_select(ht):
209
210
211
212
- 'filter': lambda ht: ~(ht.locus.contig == 'chrM'),
+ 'filter': lambda ht: ht.locus.contig != 'chrM',
213
214
215
'dbnsfp': {
0 commit comments