Skip to content

Commit 61b1b0e

Browse files
committed
Addition of SequenceOntology CS to ignore list
1 parent bec59b5 commit 61b1b0e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/common.js.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -311,8 +311,8 @@ function raiseError(issue: OperationOutcomeIssue) : boolean {
311311
//Hide errors relating to finding codes from system:http://human-phenotype-ontology.org as these are not within the Terminology server
312312
if (issue.diagnostics.includes('Validation failed for \'http://human-phenotype-ontology.org')) return false;
313313

314-
// Issue with GitHub validator requiring code to be in CodeSystem asset when there is none. No issues with the validator itself. The ValueSet in question is https://terminology.hl7.org/5.5.0/CodeSystem-v3-hgvs.html
315-
if (issue.diagnostics.includes('http://varnomen.hgvs.org')) return false;
314+
// Issue with GitHub validator requiring code to be in CodeSystem asset when there is none. No issues with the validator itself. The ValueSets in question are https://terminology.hl7.org/5.5.0/CodeSystem-v3-hgvs.html and https://terminology.hl7.org/6.4.0/CodeSystem-SO.html
315+
if (issue.diagnostics.includes('http://varnomen.hgvs.org') || issue.diagnostics.includes('http://www.sequenceontology.org')) return false;
316316
}
317317
if (issue.location !== undefined && issue.location.length>0) {
318318
if (issue.location[0].includes('StructureMap.group')) return false;

0 commit comments

Comments
 (0)