Looks like Clinvar has new string added to clin_sig: "Conflicting interpretations of pathogenicity"
I just handle it by changing these lines in join_data.R
combined$pathogenic = as.integer(grepl('athogenic\\b',combined$clinical_significance))
# conflicted = 1 if at least one submission each of [likely] benign and [likely] pathogenic
combined$conflicted = as.integer((grepl('athogenic',combined$clinical_significance) & grepl('enign',combined$clinical_significance)) | grepl('Conflicting interpretations',combined$clinical_significance, ignore.case=TRUE))
Looks like Clinvar has new string added to clin_sig: "Conflicting interpretations of pathogenicity"
I just handle it by changing these lines in join_data.R
That way you get better boolean values.