From 35b7fe21b6ffda64b319f4b9d1838feebd55145b Mon Sep 17 00:00:00 2001 From: Jim Balhoff Date: Mon, 29 Jul 2024 13:32:09 -0400 Subject: [PATCH] Output interacting taxon in correct column. --- .../minerva/legacy/sparql/GPADRenderer.java | 2 +- .../legacy/sparql/GPADSPARQLExport.java | 13 +- .../minerva/legacy/sparql/GPADSPARQLTest.java | 17 + .../src/test/resources/MGI_MGI_2429397.ttl | 8584 +++++++++++++++++ 4 files changed, 8613 insertions(+), 3 deletions(-) create mode 100644 minerva-converter/src/test/resources/MGI_MGI_2429397.ttl diff --git a/minerva-converter/src/main/java/org/geneontology/minerva/legacy/sparql/GPADRenderer.java b/minerva-converter/src/main/java/org/geneontology/minerva/legacy/sparql/GPADRenderer.java index 785dc651..4cc00ccd 100644 --- a/minerva-converter/src/main/java/org/geneontology/minerva/legacy/sparql/GPADRenderer.java +++ b/minerva-converter/src/main/java/org/geneontology/minerva/legacy/sparql/GPADRenderer.java @@ -46,7 +46,7 @@ public String render(GPADData data) { columns.add(data.getReference()); columns.add(curieHandler.getCuri(data.getEvidence())); columns.add(data.getWithOrFrom().orElse("")); - columns.add(""); // not using interacting taxon in LEGO models + columns.add(data.getInteractingTaxonID().map(curieHandler::getCuri).orElse("")); columns.add(formatDate(data.getModificationDate())); columns.add(data.getAssignedBy()); columns.add(formatAnnotationExtensions(data.getAnnotationExtensions())); diff --git a/minerva-converter/src/main/java/org/geneontology/minerva/legacy/sparql/GPADSPARQLExport.java b/minerva-converter/src/main/java/org/geneontology/minerva/legacy/sparql/GPADSPARQLExport.java index 3f58ec37..e8b65a0e 100644 --- a/minerva-converter/src/main/java/org/geneontology/minerva/legacy/sparql/GPADSPARQLExport.java +++ b/minerva-converter/src/main/java/org/geneontology/minerva/legacy/sparql/GPADSPARQLExport.java @@ -43,11 +43,15 @@ public class GPADSPARQLExport { private static final String BP = "http://purl.obolibrary.org/obo/GO_0008150"; private static final String CC = "http://purl.obolibrary.org/obo/GO_0005575"; private static final Set rootTerms = new HashSet<>(Arrays.asList(MF, BP, CC)); + + private static final String HAS_INPUT = "http://purl.obolibrary.org/obo/RO_0002233"; private static final String ENABLES = "http://purl.obolibrary.org/obo/RO_0002327"; private static final String CONTRIBUTES_TO = "http://purl.obolibrary.org/obo/RO_0002326"; private static final Set functionRelations = new HashSet<>(Arrays.asList(ENABLES, CONTRIBUTES_TO)); private static final String EMAPA_NAMESPACE = "http://purl.obolibrary.org/obo/EMAPA_"; private static final String UBERON_NAMESPACE = "http://purl.obolibrary.org/obo/UBERON_"; + + private static final String TAXON_NAMESPACE = "http://purl.obolibrary.org/obo/NCBITaxon_"; private static final String inconsistentQuery = "PREFIX rdf: " + "PREFIX owl: " + @@ -167,13 +171,18 @@ public Set getGPAD(WorkingMemory wm, IRI modelIRI) throws Inconsistent annotationEvidences.forEach(currentEvidence -> { String reference = currentEvidence.getReference(); Set goodExtensions = new HashSet<>(); + Optional interactingTaxon = Optional.empty(); for (AnnotationExtension extension : possibleExtensions) { if (extension.getTriple().getSubject().equals(annotation.getOntologyClassNode()) && !(extension.getTriple().getObject().equals(annotation.getObjectNode()))) { for (Explanation expl : allExplanations.get(extension.getTriple())) { boolean allFactsOfExplanationHaveRefMatchingAnnotation = toJava(expl.facts()).stream().map(fact -> allEvidences.getOrDefault(Bridge.jenaFromTriple(fact), Collections.emptySet())).allMatch(evidenceSet -> evidenceSet.stream().anyMatch(ev -> ev.getReference().equals(reference))); if (allFactsOfExplanationHaveRefMatchingAnnotation) { - goodExtensions.add(new DefaultConjunctiveExpression(IRI.create(extension.getTriple().getPredicate().getURI()), extension.getValueType())); + if (!interactingTaxon.isPresent() && extension.getTriple().getPredicate().getURI().equals(HAS_INPUT) && extension.getValueType().toString().startsWith(TAXON_NAMESPACE)) { + interactingTaxon = Optional.of(extension.getValueType()); + } else { + goodExtensions.add(new DefaultConjunctiveExpression(IRI.create(extension.getTriple().getPredicate().getURI()), extension.getValueType())); + } } } } @@ -191,7 +200,7 @@ public Set getGPAD(WorkingMemory wm, IRI modelIRI) throws Inconsistent final boolean rootMFWithOtherMF = annotation.getOntologyClass().toString().equals(MF) && gpsWithAnyMFNotRootMF.contains(annotation.getObject()); if (!rootViolation && !rootMFWithOtherMF) { DefaultGPADData defaultGPADData = new DefaultGPADData(annotation.getObject(), annotation.getQualifier(), annotation.getOntologyClass(), goodExtensions, - reference, currentEvidence.getEvidence(), currentEvidence.getWithOrFrom(), Optional.empty(), currentEvidence.getModificationDate(), + reference, currentEvidence.getEvidence(), currentEvidence.getWithOrFrom(), interactingTaxon, currentEvidence.getModificationDate(), currentEvidence.getAssignedBy(), currentEvidence.getAnnotations()); defaultGPADData.setOperator(annotation.getOperator()); annotations.add(defaultGPADData); diff --git a/minerva-converter/src/test/java/org/geneontology/minerva/legacy/sparql/GPADSPARQLTest.java b/minerva-converter/src/test/java/org/geneontology/minerva/legacy/sparql/GPADSPARQLTest.java index d0756d0d..f8ec6aad 100644 --- a/minerva-converter/src/test/java/org/geneontology/minerva/legacy/sparql/GPADSPARQLTest.java +++ b/minerva-converter/src/test/java/org/geneontology/minerva/legacy/sparql/GPADSPARQLTest.java @@ -180,4 +180,21 @@ public void testFilterAnnotationsToRegulatedProcess() throws Exception { Assert.assertTrue(annotations.stream().noneMatch(a -> a.getObject().equals(gene) && a.getOntologyClass().equals(regulated))); } + @Test + public void testInteractingTaxon() { + Model model = ModelFactory.createDefaultModel(); + model.read(this.getClass().getResourceAsStream("/MGI_MGI_2429397.ttl"), "", "ttl"); + Set triples = model.listStatements().toList().stream().map(s -> Bridge.tripleFromJena(s.asTriple())).collect(Collectors.toSet()); + WorkingMemory mem = arachne.processTriples(JavaConverters.asScalaSetConverter(triples).asScala()); + Set annotations = exporter.getGPAD(mem, IRI.create("http://test.org")); + IRI gene = IRI.create("http://identifiers.org/mgi/MGI:2429397"); + IRI interactingTaxon = IRI.create("http://purl.obolibrary.org/obo/NCBITaxon_196620"); + Assert.assertTrue(annotations.stream().anyMatch( + a -> a.getObject().equals(gene) && + a.getInteractingTaxonID().isPresent() && + a.getInteractingTaxonID().get().equals(interactingTaxon))); + Assert.assertTrue(annotations.stream().noneMatch(a -> + a.getAnnotationExtensions().stream().anyMatch(ce -> ce.getFiller().equals(interactingTaxon)))); + } + } diff --git a/minerva-converter/src/test/resources/MGI_MGI_2429397.ttl b/minerva-converter/src/test/resources/MGI_MGI_2429397.ttl new file mode 100644 index 00000000..d384f0db --- /dev/null +++ b/minerva-converter/src/test/resources/MGI_MGI_2429397.ttl @@ -0,0 +1,8584 @@ +@prefix : . +@prefix owl: . +@prefix rdf: . +@prefix xml: . +@prefix xsd: . +@prefix rdfs: . +@base . + + rdf:type owl:Ontology ; + owl:versionIRI ; + "production"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" , + "https://orcid.org/0000-0002-9796-7693" , + "https://orcid.org/0000-0003-3394-9805" ; + "2023-09-28"^^xsd:string ; + "Nod2 (MGI:MGI:2429397)" ; + "2005-11-11" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + . + +################################################################# +# Annotation properties +################################################################# + +### http://geneontology.org/lego/evidence + rdf:type owl:AnnotationProperty . + + +### http://geneontology.org/lego/evidence-with + rdf:type owl:AnnotationProperty . + + +### http://geneontology.org/lego/modelstate + rdf:type owl:AnnotationProperty . + + +### http://geneontology.org/lego/hint/layout/x + rdf:type owl:AnnotationProperty . + + +### http://geneontology.org/lego/hint/layout/y + rdf:type owl:AnnotationProperty . + + +### http://purl.org/dc/elements/1.1/contributor + rdf:type owl:AnnotationProperty . + + +### http://purl.org/dc/elements/1.1/date + rdf:type owl:AnnotationProperty . + + +### http://purl.org/dc/elements/1.1/source + rdf:type owl:AnnotationProperty . + + +### http://purl.org/dc/elements/1.1/title + rdf:type owl:AnnotationProperty . + + +### http://purl.org/dc/terms/created + rdf:type owl:AnnotationProperty . + + +### http://purl.org/dc/terms/dateAccepted + rdf:type owl:AnnotationProperty . + + +### http://purl.org/pav/providedBy + rdf:type owl:AnnotationProperty . + + +### https://w3id.org/biolink/vocab/in_taxon + rdf:type owl:AnnotationProperty . + + +################################################################# +# Object Properties +################################################################# + +### http://purl.obolibrary.org/obo/BFO_0000050 + rdf:type owl:ObjectProperty . + + +### http://purl.obolibrary.org/obo/BFO_0000066 + rdf:type owl:ObjectProperty . + + +### http://purl.obolibrary.org/obo/RO_0002211 + rdf:type owl:ObjectProperty . + + +### http://purl.obolibrary.org/obo/RO_0002212 + rdf:type owl:ObjectProperty . + + +### http://purl.obolibrary.org/obo/RO_0002213 + rdf:type owl:ObjectProperty . + + +### http://purl.obolibrary.org/obo/RO_0002233 + rdf:type owl:ObjectProperty . + + +### http://purl.obolibrary.org/obo/RO_0002333 + rdf:type owl:ObjectProperty . + + +### http://purl.obolibrary.org/obo/RO_0002418 + rdf:type owl:ObjectProperty . + + +### http://purl.obolibrary.org/obo/RO_0002565 + rdf:type owl:ObjectProperty . + + +################################################################# +# Classes +################################################################# + +### http://identifiers.org/mgi/MGI:2429397 + rdf:type owl:Class . + + +### http://identifiers.org/mgi/MGI:2685628 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/CL_0000066 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/CL_0000235 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/CL_0000451 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/CL_0000775 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/ECO_0000266 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/ECO_0000314 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/ECO_0000315 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/ECO_0000316 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/ECO_0000353 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/EMAPA_16332 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/EMAPA_32764 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/EMAPA_35770 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/GO_0000165 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/GO_0002227 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/GO_0002253 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/GO_0002381 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/GO_0002710 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/GO_0002815 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/GO_0002862 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/GO_0002925 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/GO_0003674 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/GO_0005515 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/GO_0006909 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/GO_0006963 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/GO_0006965 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/GO_0007249 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/GO_0007254 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/GO_0018108 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/GO_0030593 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/GO_0032088 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/GO_0032494 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/GO_0032495 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/GO_0032496 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/GO_0032498 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/GO_0032500 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/GO_0032609 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/GO_0032615 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/GO_0032621 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/GO_0032623 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/GO_0032635 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/GO_0032640 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/GO_0032689 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/GO_0032695 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/GO_0032701 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/GO_0032703 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/GO_0032720 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/GO_0032735 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/GO_0032755 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/GO_0032760 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/GO_0032874 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/GO_0034134 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/GO_0034136 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/GO_0038061 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/GO_0038187 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/GO_0043123 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/GO_0043330 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/GO_0043410 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/GO_0045089 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/GO_0046330 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/GO_0050727 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/GO_0050731 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/GO_0050766 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/GO_0050830 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/GO_0051092 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/GO_0051403 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/GO_0070371 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/GO_0070374 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/GO_0070431 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/GO_0071224 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/GO_0071608 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/GO_0090022 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/GO_0098792 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/GO_1901224 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/GO_1904417 + rdf:type owl:Class . + + +### http://purl.obolibrary.org/obo/PR_Q3UZZ4 + rdf:type owl:Class . + + +### taxon:196620 + rdf:type owl:Class . + + +### taxon:282459 + rdf:type owl:Class . + + +################################################################# +# Individuals +################################################################# + +### http://model.geneontology.org/MGI_MGI_2429397/a031d5bf-5d52-4e7e-9a84-404132c54983 + rdf:type owl:NamedIndividual , + ; + ; + "16021.875"^^xsd:string ; + "381.25"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2007-12-14" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + , + , + , + ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "2007-12-14" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0032735 MGI:MGI:2679172|PMID:14560001 ECO:0000315 MGI:MGI:2680581 2020-12-07 MGI GOREL:0001004(CL:0000235) creation-date=2007-12-14|modification-date=2020-12-07|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|contributor-id=https://orcid.org/0000-0001-9990-8331|contributor-id=https://orcid.org/0000-0001-7476-6306" , + "MGI:MGI:2429397 RO:0002264 GO:0032735 MGI:MGI:3050756|PMID:15220916 ECO:0000314 2020-12-07 MGI GOREL:0001004(CL:0000235) creation-date=2007-12-20|modification-date=2020-12-07|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|comment=macrophages from Nod2 KO mice transfected with wildtype mouse Nod2|contributor-id=https://orcid.org/0000-0001-9990-8331|contributor-id=https://orcid.org/0000-0001-7476-6306" , + "MGI:MGI:2429397 RO:0002264 GO:0032735 MGI:MGI:3050756|PMID:15220916 ECO:0000315 MGI:MGI:2680581 2020-12-07 MGI GOREL:0001004(CL:0000235) creation-date=2007-12-20|modification-date=2020-12-07|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|contributor-id=https://orcid.org/0000-0001-7476-6306|contributor-id=https://orcid.org/0000-0001-9990-8331" , + "MGI:MGI:2429397 RO:0002264 GO:0032735 MGI:MGI:3528786|PMID:15692051 ECO:0000315 MGI:MGI:3529594 2020-12-07 MGI GOREL:0001004(CL:0000235) creation-date=2007-12-17|modification-date=2020-12-07|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|contributor-id=https://orcid.org/0000-0001-9990-8331|contributor-id=https://orcid.org/0000-0001-7476-6306" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/a0b5d84d-d955-4076-bc1c-ac0b0930605d + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:1341839" ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "PMID:18261938" ; + "2009-02-16" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" , + "evidence IB" . + + +### http://model.geneontology.org/MGI_MGI_2429397/a14cb8d4-7868-4670-890f-e9becf52f8de + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "PMID:18261938" ; + "2009-02-16" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" , + "evidence IB" . + + +### http://model.geneontology.org/MGI_MGI_2429397/a15d5ef7-6143-4989-84b9-17fcbf7a14c9 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:2680581" ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "PMID:14560001" ; + "2007-12-14" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/a1ee4ed2-9190-47bd-8e2d-5b0487382bae + rdf:type owl:NamedIndividual , + ; + ; + "19070.63330078125"^^xsd:string ; + "1135.25"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2009-02-16" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-02-16" ; + "2009-02-16" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0043123 MGI:MGI:3775161|PMID:18261938 ECO:0000314 2009-02-16 MGI GOREL:0001004(CL:0000235) creation-date=2009-02-16|modification-date=2009-02-16|comment=cell type macrophage ; CL:0000235|comment=evidence IB|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/a3376059-36c7-4f60-b856-ef3b46f6892e + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0002-9796-7693" ; + "2013-10-30" ; + "2013-10-30" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/a35cc4ec-ea52-4c72-b263-4a5ee4dceb3b + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-7476-6306" ; + "2015-10-23" ; + "PMID:22033934" ; + "2015-10-23" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/a3694e01-81c3-4e83-8a03-df96bb168634 + rdf:type owl:NamedIndividual , + ; + ; + ; + "11100"^^xsd:string ; + "687.5"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2007-12-20" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "2007-12-20" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0032701 MGI:MGI:3050756|PMID:15220916 ECO:0000315 MGI:MGI:2680581 2020-12-07 MGI GOREL:0001004(CL:0000235) creation-date=2007-12-20|modification-date=2020-12-07|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|contributor-id=https://orcid.org/0000-0001-9990-8331|contributor-id=https://orcid.org/0000-0001-7476-6306" + ] . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "2007-12-20" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0032701 MGI:MGI:3050756|PMID:15220916 ECO:0000315 MGI:MGI:2680581 2020-12-07 MGI GOREL:0001004(CL:0000235) creation-date=2007-12-20|modification-date=2020-12-07|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|contributor-id=https://orcid.org/0000-0001-9990-8331|contributor-id=https://orcid.org/0000-0001-7476-6306" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/a5379f40-5a75-4921-94b9-d54e600f5c65 + rdf:type owl:NamedIndividual , + ; + "UniProtKB:Q9HC29" ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2010-11-04" ; + "GO_REF:0000008" ; + "2009-08-27" ; + "http://informatics.jax.org" ; + rdfs:comment "ADD-IDO" , + "cell type permanent cell line ; CLO:0000019 293 [HEK293] ; ATCC:CRL-1573" , + "evidence NF-kappaB activation assay" , + "external ref PMID:12527755 IDA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/a60cdc2e-04b1-4279-8f04-5f953d066384 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-08-15" ; + "PMID:19139201" ; + "2009-08-15" ; + "http://informatics.jax.org" ; + rdfs:comment "ADD-IDO" , + "anatomy blood ; MA:0000059" , + "cell type neutrophil ; CL:0000775" , + "evidence cell counts" . + + +### http://model.geneontology.org/MGI_MGI_2429397/a6306680-4edc-4567-abda-a3650f6e23fd + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "PMID:15692051" ; + "2007-12-17" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/a673d026-336c-42b0-9de6-c0496076600e + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-17" ; + "PMID:15692051" ; + "2007-12-17" ; + "http://informatics.jax.org" ; + rdfs:comment "evidence bacterial counts in liver and spleen" . + + +### http://model.geneontology.org/MGI_MGI_2429397/a7118889-a08c-4dcf-8421-fe7ad94ec9fb + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-02-16" ; + "PMID:18261938" ; + "2009-02-16" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence IB" . + + +### http://model.geneontology.org/MGI_MGI_2429397/a7f10841-906b-4ddd-9daa-c9a309c0d310 + rdf:type owl:NamedIndividual , + ; + "21731.25"^^xsd:string ; + "75"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2009-08-15" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/a7fe3523-8fcd-42a2-aa39-58c6eab5abd5 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-08-15" ; + "PMID:19139201" ; + "2009-08-15" ; + "http://informatics.jax.org" ; + rdfs:comment "ADD-IDO" , + "anatomy serum ; MA:0002502" , + "evidence ELISA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/a7ff92ab-7567-42b4-9930-855e87a09cf5 + rdf:type owl:NamedIndividual , + ; + "UniProtKB:Q9HC29" ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2010-11-04" ; + "GO_REF:0000008" ; + "2009-08-27" ; + "http://informatics.jax.org" ; + rdfs:comment "ADD-IDO" , + "cell type permanent cell line ; CLO:0000019 293 [HEK293] ; ATCC:CRL-1573" , + "evidence NF-kappaB activation assay" , + "external ref PMID:12527755 IDA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/a82a2e47-5f1a-4ef0-9c11-7a0bc00b657d + rdf:type owl:NamedIndividual , + ; + ; + "17990.625"^^xsd:string ; + "381.25"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2007-12-17" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-17" ; + "2007-12-17" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0043410 MGI:MGI:3528786|PMID:15692051 ECO:0000315 MGI:MGI:3529594 2007-12-17 MGI GOREL:0001004(CL:0000235) creation-date=2007-12-17|modification-date=2007-12-17|comment=cell type macrophage ; CL:0000235|comment=evidence IB|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/a8ae5379-cf47-4eaa-b4b2-3d0c5fe3acbf + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-08-15" ; + "PMID:19139201" ; + "2009-08-15" ; + "http://informatics.jax.org" ; + rdfs:comment "ADD-IDO" , + "anatomy serum ; MA:0002502" , + "evidence ELISA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/a93f365b-b41c-4195-b75e-019fc5bda6ad + rdf:type owl:NamedIndividual , + ; + ; + ; + "9776.88330078125"^^xsd:string ; + "275.25"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2009-08-27" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2010-11-04" ; + "2009-08-27" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0043123 MGI:MGI:2154458|GO_REF:0000008 ECO:0000266 UniProtKB:Q9HC29 2010-11-04 MGI creation-date=2009-08-27|modification-date=2010-11-04|comment=cell type permanent cell line ; CLO:0000019 293 [HEK293] ; ATCC:CRL-1573|comment=evidence NF-kappaB activation assay|comment=external ref PMID:12527755 IDA|comment=ADD-IDO|contributor-id=https://orcid.org/0000-0001-9990-8331|contributor-id=https://orcid.org/0000-0001-7476-6306" + ] . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2010-11-04" ; + "2009-08-27" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0043123 MGI:MGI:2154458|GO_REF:0000008 ECO:0000266 UniProtKB:Q9HC29 2010-11-04 MGI creation-date=2009-08-27|modification-date=2010-11-04|comment=cell type permanent cell line ; CLO:0000019 293 [HEK293] ; ATCC:CRL-1573|comment=evidence NF-kappaB activation assay|comment=external ref PMID:12527755 IDA|comment=ADD-IDO|contributor-id=https://orcid.org/0000-0001-9990-8331|contributor-id=https://orcid.org/0000-0001-7476-6306" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/aa008cc6-1ebd-448b-a136-5b8b05d5961a + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:2680581" ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "PMID:15220916" ; + "2007-12-20" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/aa37e6b1-fb8d-4f9d-ae90-54e7a454814f + rdf:type owl:NamedIndividual , + ; + ; + ; + "13856.25"^^xsd:string ; + "687.5"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2007-12-17" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-17" ; + "2007-12-17" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0050731 MGI:MGI:3528786|PMID:15692051 ECO:0000315 MGI:MGI:3529594 2007-12-17 MGI GOREL:0001004(CL:0000235) creation-date=2007-12-17|modification-date=2007-12-17|comment=cell type macrophage ; CL:0000235|comment=evidence IB|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-17" ; + "2007-12-17" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0050731 MGI:MGI:3528786|PMID:15692051 ECO:0000315 MGI:MGI:3529594 2007-12-17 MGI GOREL:0001004(CL:0000235) creation-date=2007-12-17|modification-date=2007-12-17|comment=cell type macrophage ; CL:0000235|comment=evidence IB|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/aa59a2a0-b947-4944-9f52-793d136aa9fe + rdf:type owl:NamedIndividual , + ; + ; + ; + "4013.25"^^xsd:string ; + "843.5"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306" ; + "2023-09-28"^^xsd:string ; + "2015-10-23" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-7476-6306" ; + "2023-09-28"^^xsd:string ; + "http://informatics.jax.org" + ] . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-7476-6306" ; + "2015-10-23" ; + "2015-10-23" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:1901224 MGI:MGI:5299952|PMID:22033934 ECO:0000315 MGI:MGI:3529594 2015-10-23 MGI BFO:0000066(CL:0000235),GOREL:0001004(CL:0000235) creation-date=2015-10-23|modification-date=2015-10-23|contributor-id=https://orcid.org/0000-0001-7476-6306" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/aa70751f-c4f3-441c-9937-61262e97f711 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0003-3394-9805" ; + "2020-04-03" ; + "2007-04-10" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/ab70c919-0ca5-43e6-99a6-8e8a4510c258 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-9990-8331" , + "https://orcid.org/0000-0002-9796-7693" ; + "2021-04-13" ; + "2009-08-15" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/ad1bf4c2-0cf3-4fdf-b9f1-c7a81906fe84 + rdf:type owl:NamedIndividual , + ; + ; + ; + "3689.133331298828"^^xsd:string ; + "612.25"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306" ; + "2023-09-28"^^xsd:string ; + "2015-10-23" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-7476-6306" ; + "2015-10-23" ; + "2015-10-23" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:1901224 MGI:MGI:5299952|PMID:22033934 ECO:0000315 MGI:MGI:3529594 2015-10-23 MGI BFO:0000066(CL:0000235),GOREL:0001004(CL:0000235) creation-date=2015-10-23|modification-date=2015-10-23|contributor-id=https://orcid.org/0000-0001-7476-6306" + ] . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-7476-6306" ; + "2015-10-23" ; + "2015-10-23" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:1901224 MGI:MGI:5299952|PMID:22033934 ECO:0000315 MGI:MGI:3529594 2015-10-23 MGI BFO:0000066(CL:0000235),GOREL:0001004(CL:0000235) creation-date=2015-10-23|modification-date=2015-10-23|contributor-id=https://orcid.org/0000-0001-7476-6306" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/ad975de9-2938-4e0c-be65-5d0cf238afcc + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-17" ; + "PMID:15692051" ; + "2007-12-17" ; + "http://informatics.jax.org" ; + rdfs:comment "anatomy ileum ; MA:0000339" , + "evidence RT-PCR" . + + +### http://model.geneontology.org/MGI_MGI_2429397/ae1aec8c-7f15-4ad6-88e7-b2b6c6e8c58c + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-9990-8331" , + "https://orcid.org/0000-0002-9796-7693" ; + "2021-04-13" ; + "PMID:19139201" ; + "2009-08-15" ; + "http://informatics.jax.org" ; + rdfs:comment "ADD-IDO Staphylococcus aureus subsp. aureus MW2 ; taxon:196620 Staphylococcus aureus subsp. aureus MSSA476 ; taxon:282459" , + "evidence survival curves" . + + +### http://model.geneontology.org/MGI_MGI_2429397/ae38e14f-7078-42c2-a917-46dbe52f1a74 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-17" ; + "2007-12-17" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/aed08871-097d-4d54-8d20-7cb74b98d0c1 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:2680581" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-14" ; + "PMID:14560001" ; + "2007-12-14" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/aedbabdc-a4af-404d-a1e5-7b0310b1252b + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-7476-6306" ; + "2015-10-23" ; + "2015-10-23" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/b0e21d0a-6fc3-472e-ae70-3d558af821f5 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0002-9796-7693" ; + "2013-10-30" ; + "2013-10-30" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/b1950951-5f09-4641-acc0-1ca6629ad161 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-7476-6306" ; + "2015-10-23" ; + "PMID:22033934" ; + "2015-10-23" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/b2e73f16-1422-493e-a40d-298212e2e0ca + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-08-15" ; + "2009-08-15" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/b36caeaa-968d-4af6-b0e5-bab463e71aec + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-17" ; + "2007-12-17" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/b461d107-341c-4749-8d4f-a77f43b69232 + rdf:type owl:NamedIndividual , + ; + ; + "21337.5"^^xsd:string ; + "75"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2009-08-15" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-08-15" ; + "2009-08-15" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0032720 MGI:MGI:3839525|PMID:19139201 ECO:0000315 MGI:MGI:3529594 2009-08-15 MGI GOREL:0001004(EMAPA:35770) creation-date=2009-08-15|modification-date=2009-08-15|comment=anatomy serum ; MA:0002502|comment=evidence ELISA|comment=ADD-IDO|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/b46dba4c-58a8-4a18-98da-7b095401af83 + rdf:type owl:NamedIndividual , + ; + ; + ; + "9918.75"^^xsd:string ; + "687.5"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2009-02-16" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + , + , + ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "2009-02-16" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0032760 MGI:MGI:3775161|PMID:18261938 ECO:0000314 2020-12-07 MGI GOREL:0001004(CL:0000235) creation-date=2009-02-16|modification-date=2020-12-07|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|contributor-id=https://orcid.org/0000-0001-9990-8331|contributor-id=https://orcid.org/0000-0001-7476-6306" , + "MGI:MGI:2429397 RO:0002264 GO:0032760 MGI:MGI:3775161|PMID:18261938 ECO:0000315 MGI:MGI:3529594 2020-12-07 MGI GOREL:0001004(CL:0000235) creation-date=2009-02-16|modification-date=2020-12-07|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|comment=evidence IB|contributor-id=https://orcid.org/0000-0001-9990-8331|contributor-id=https://orcid.org/0000-0001-7476-6306" , + "MGI:MGI:2429397 RO:0002264 GO:0032760 MGI:MGI:3775161|PMID:18261938 ECO:0000316 MGI:MGI:1341839 2020-12-07 MGI GOREL:0001004(CL:0000235) creation-date=2009-02-16|modification-date=2020-12-07|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|comment=evidence IB|contributor-id=https://orcid.org/0000-0001-7476-6306|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + , + , + ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "2009-02-16" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0032760 MGI:MGI:3775161|PMID:18261938 ECO:0000314 2020-12-07 MGI GOREL:0001004(CL:0000235) creation-date=2009-02-16|modification-date=2020-12-07|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|contributor-id=https://orcid.org/0000-0001-9990-8331|contributor-id=https://orcid.org/0000-0001-7476-6306" , + "MGI:MGI:2429397 RO:0002264 GO:0032760 MGI:MGI:3775161|PMID:18261938 ECO:0000315 MGI:MGI:3529594 2020-12-07 MGI GOREL:0001004(CL:0000235) creation-date=2009-02-16|modification-date=2020-12-07|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|comment=evidence IB|contributor-id=https://orcid.org/0000-0001-9990-8331|contributor-id=https://orcid.org/0000-0001-7476-6306" , + "MGI:MGI:2429397 RO:0002264 GO:0032760 MGI:MGI:3775161|PMID:18261938 ECO:0000316 MGI:MGI:1341839 2020-12-07 MGI GOREL:0001004(CL:0000235) creation-date=2009-02-16|modification-date=2020-12-07|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|comment=evidence IB|contributor-id=https://orcid.org/0000-0001-7476-6306|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/b5a0153c-6916-4dec-ba7a-ddb0f0a1ae2a + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "PMID:15692051" ; + "2007-12-17" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/b6ff7280-68f5-46cb-8fba-6972588a988b + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-20" ; + "2007-12-14" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/b7cbbaa8-ca1b-4970-9820-546541a2962f + rdf:type owl:NamedIndividual , + ; + ; + "15234.375"^^xsd:string ; + "381.25"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2009-02-16" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-02-16" ; + "2009-02-16" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0046330 MGI:MGI:3775161|PMID:18261938 ECO:0000314 2009-02-16 MGI GOREL:0001004(CL:0000235) creation-date=2009-02-16|modification-date=2009-02-16|comment=cell type macrophage ; CL:0000235|comment=evidence IB|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/b8438c24-8d94-4d2a-a0db-736d65782db9 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-08-15" ; + "PMID:19139201" ; + "2009-08-15" ; + "http://informatics.jax.org" ; + rdfs:comment "ADD-IDO" , + "anatomy blood ; MA:0000059" , + "cell type neutrophil ; CL:0000775" , + "evidence cell counts" . + + +### http://model.geneontology.org/MGI_MGI_2429397/ba06cc32-c679-47f5-93dc-79da475dbcfa + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-08-15" ; + "PMID:19139201" ; + "2009-08-15" ; + "http://informatics.jax.org" ; + rdfs:comment "ADD-IDO" , + "cell type neutrophil ; CL:0000775" , + "evidence phagocytosis assay" . + + +### http://model.geneontology.org/MGI_MGI_2429397/ba8cc6ea-1254-45d1-881d-e6c74907a02d + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2010-11-04" ; + "2009-08-27" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/bb331738-9949-461b-a852-7b39504cfa6d + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:2680581" ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" , + "https://orcid.org/0000-0002-9796-7693" ; + "2021-03-23" ; + "PMID:15220916" ; + "2007-12-20" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence NF-kappaB activation assay" . + + +### http://model.geneontology.org/MGI_MGI_2429397/bc0d496b-572d-477a-a9a2-0d2f29539dca + rdf:type owl:NamedIndividual , + ; + ; + "20746.875"^^xsd:string ; + "381.25"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2009-08-15" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-08-15" ; + "2009-08-15" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0032720 MGI:MGI:3839525|PMID:19139201 ECO:0000315 MGI:MGI:3529594 2009-08-15 MGI GOREL:0001004(EMAPA:35770) creation-date=2009-08-15|modification-date=2009-08-15|comment=anatomy serum ; MA:0002502|comment=evidence ELISA|comment=ADD-IDO|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/bc4d85d1-e9fe-42fa-9877-19d1b01fe15b + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:2680581" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-20" ; + "PMID:15220916" ; + "2007-12-20" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/bd84e109-cc52-41b5-952f-b77ecefd3428 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:2680581" ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "PMID:15220916" ; + "2007-12-20" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/bda692dc-5d87-466d-ae1d-374558cf9b4b + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:2680581" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-14" ; + "PMID:14560001" ; + "2007-12-14" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/bec9144c-9593-4e90-8544-2d71a6c95ce1 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "PMID:18261938" ; + "2009-02-16" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/c05d1368-f55a-4abe-a89f-8276be7350e1 + rdf:type owl:NamedIndividual , + ; + "UniProtKB:Q9HC29" ; + "https://orcid.org/0000-0001-9990-8331" , + "https://orcid.org/0000-0003-3394-9805" ; + "2009-02-16" ; + "PMID:17187069" ; + "2007-04-06" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type 293 ; ATCC:0000013 ; CRL-1573" , + "evidence inferred from reporter gene assay ; ECO:0000049" , + "evidence:luciferase transcriptional reporter assay" , + "target p38" . + + +### http://model.geneontology.org/MGI_MGI_2429397/c069759a-71b4-4770-966e-66c524ea6b64 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-7476-6306" ; + "2015-10-23" ; + "PMID:22033934" ; + "2015-10-23" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/c1188814-644f-4c37-a4c3-0d4e74e422ca + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-08-15" ; + "PMID:19139201" ; + "2009-08-15" ; + "http://informatics.jax.org" ; + rdfs:comment "ADD-IDO" , + "anatomy serum ; MA:0002502" , + "evidence ELISA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/c1cddbfd-55d2-427b-aafc-5fdc17ec91e3 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:2680581" ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "PMID:15220916" ; + "2007-12-20" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/c1fd31ab-08b6-4e63-9a11-6f7ea23837a3 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-7476-6306" ; + "2015-10-23" ; + "2015-10-23" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/c2587c68-2322-45a3-a57f-c1213854866e + rdf:type owl:NamedIndividual , + ; + , + ; + "4209.375"^^xsd:string ; + "381.25"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2009-08-15" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-08-15" ; + "2009-08-15" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0090022 MGI:MGI:3839525|PMID:19139201 ECO:0000315 MGI:MGI:3529594 2009-08-15 MGI GOREL:0001004(EMAPA:16332),GOREL:0001005(CL:0000775) creation-date=2009-08-15|modification-date=2009-08-15|comment=anatomy blood ; MA:0000059|comment=cell type neutrophil ; CL:0000775|comment=evidence cell counts|comment=ADD-IDO|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-08-15" ; + "2009-08-15" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0090022 MGI:MGI:3839525|PMID:19139201 ECO:0000315 MGI:MGI:3529594 2009-08-15 MGI GOREL:0001004(EMAPA:16332),GOREL:0001005(CL:0000775) creation-date=2009-08-15|modification-date=2009-08-15|comment=anatomy blood ; MA:0000059|comment=cell type neutrophil ; CL:0000775|comment=evidence cell counts|comment=ADD-IDO|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/c2e0fbd8-49c7-40c4-b6ce-817b70e3e85d + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-17" ; + "PMID:15692051" ; + "2007-12-17" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/c3d6c47b-eb3f-487d-966b-42c03c02f453 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-17" ; + "2007-12-17" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/c3e901eb-7697-4eff-aa08-e467ef766af1 + rdf:type owl:NamedIndividual , + ; + ; + "20943.75"^^xsd:string ; + "75"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2009-08-15" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-08-15" ; + "2009-08-15" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0032703 MGI:MGI:3839525|PMID:19139201 ECO:0000315 MGI:MGI:3529594 2009-08-15 MGI GOREL:0001004(EMAPA:35770) creation-date=2009-08-15|modification-date=2009-08-15|comment=anatomy serum ; MA:0002502|comment=evidence ELISA|comment=ADD-IDO|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/c4a11179-87e5-457f-8272-21b1bb8f8d8f + rdf:type owl:NamedIndividual , + ; + ; + "8540.625"^^xsd:string ; + "381.25"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2007-12-20" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + , + ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "2007-12-20" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0032695 MGI:MGI:3050756|PMID:15220916 ECO:0000314 2020-12-07 MGI GOREL:0001004(CL:0000235) creation-date=2007-12-20|modification-date=2020-12-07|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|comment=macrophages from Nod2 KO mice transfected with wildtype mouse Nod2|contributor-id=https://orcid.org/0000-0001-9990-8331|contributor-id=https://orcid.org/0000-0001-7476-6306" , + "MGI:MGI:2429397 RO:0002264 GO:0032695 MGI:MGI:3050756|PMID:15220916 ECO:0000315 MGI:MGI:2680581 2020-12-07 MGI GOREL:0001004(CL:0000235) creation-date=2007-12-20|modification-date=2020-12-07|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|contributor-id=https://orcid.org/0000-0001-9990-8331|contributor-id=https://orcid.org/0000-0001-7476-6306" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/c526e74a-5159-4705-9c6c-614b2e6b5aab + rdf:type owl:NamedIndividual , + ; + "PR:Q3UZZ4" ; + "https://orcid.org/0000-0001-7476-6306" ; + "2013-08-02" ; + "PMID:20534456" ; + "2013-08-02" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/c53398ec-b7d0-438e-8f5c-29991dddd667 + rdf:type owl:NamedIndividual , + ; + ; + ; + "15628.125"^^xsd:string ; + "381.25"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0002-9796-7693" ; + "2023-09-28"^^xsd:string ; + "2013-10-30" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0002-9796-7693" ; + "2013-10-30" ; + "2013-10-30" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0006963 MGI:MGI:3775881|PMID:18167348 ECO:0000314 2013-10-30 MGI creation-date=2013-10-30|modification-date=2013-10-30|contributor-id=https://orcid.org/0000-0002-9796-7693" + ] . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0002-9796-7693" ; + "2013-10-30" ; + "2013-10-30" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0006963 MGI:MGI:3775881|PMID:18167348 ECO:0000314 2013-10-30 MGI creation-date=2013-10-30|modification-date=2013-10-30|contributor-id=https://orcid.org/0000-0002-9796-7693" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/c7d1617f-057f-441d-8681-70d486fbb966 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-02-16" ; + "PMID:18261938" ; + "2009-02-16" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence IB" . + + +### http://model.geneontology.org/MGI_MGI_2429397/c869c0fc-19f2-4be4-afa0-de4b038d2d2e + rdf:type owl:NamedIndividual , + ; + ; + "20550"^^xsd:string ; + "75"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-27"^^xsd:string ; + "2007-12-17" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-17" ; + "2007-12-17" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0032496 MGI:MGI:3528786|PMID:15692051 ECO:0000315 MGI:MGI:3529594 2007-12-17 MGI BFO:0000066(CL:0000235) creation-date=2007-12-17|modification-date=2007-12-17|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/c8d24980-dc21-4bb3-90cd-1bb57988c33c + rdf:type owl:NamedIndividual , + ; + ; + "19523.25"^^xsd:string ; + "1111"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2009-02-16" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-02-16" ; + "2009-02-16" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0043123 MGI:MGI:3775161|PMID:18261938 ECO:0000314 2009-02-16 MGI GOREL:0001004(CL:0000235) creation-date=2009-02-16|modification-date=2009-02-16|comment=cell type macrophage ; CL:0000235|comment=evidence IB|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/c9aa246d-3f29-44ec-9225-03b87ece3544 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-7476-6306" ; + "2013-08-02" ; + "2013-08-02" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/c9dd7b4d-f954-4f2b-a48d-bbab59fd4637 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2010-02-09" ; + "2009-08-15" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/ca5d25d2-7cae-4839-bc84-ad950fd867f1 + rdf:type owl:NamedIndividual , + ; + ; + "1846.875"^^xsd:string ; + "381.25"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2009-02-17" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-02-17" ; + "2009-02-17" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0070374 MGI:MGI:3775161|PMID:18261938 ECO:0000314 2009-02-17 MGI GOREL:0001004(CL:0000235) creation-date=2009-02-17|modification-date=2009-02-17|comment=cell type macrophage ; CL:0000235|comment=evidence IB|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/ca9b2ad3-8dcd-4c79-988a-567de5ba2c90 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "PMID:15692051" ; + "2007-12-17" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/cacb06cc-8363-4929-af38-51cad7eb68bc + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2010-02-09" ; + "PMID:19139201" ; + "2009-08-15" ; + "http://informatics.jax.org" ; + rdfs:comment "ADD-IDO" , + "anatomy serum ; MA:0002502" , + "evidence ELISA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/cb381ef3-3360-4d3d-be84-4ef3fa6e507f + rdf:type owl:NamedIndividual , + ; + ; + ; + "1256.25"^^xsd:string ; + "75"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306" ; + "2023-09-28"^^xsd:string ; + "2013-08-02" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-7476-6306" ; + "2013-08-02" ; + "2013-08-02" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002327 GO:0005515 MGI:MGI:4457946|PMID:20534456 ECO:0000353 PR:Q3UZZ4 2013-08-02 MGI creation-date=2013-08-02|modification-date=2013-08-02|contributor-id=https://orcid.org/0000-0001-7476-6306" + ] . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-7476-6306" ; + "2013-08-02" ; + "2013-08-02" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002327 GO:0005515 MGI:MGI:4457946|PMID:20534456 ECO:0000353 PR:Q3UZZ4 2013-08-02 MGI creation-date=2013-08-02|modification-date=2013-08-02|contributor-id=https://orcid.org/0000-0001-7476-6306" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/ccce597a-22d1-4761-83c0-7d86f3598988 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-9990-8331" , + "https://orcid.org/0000-0002-9796-7693" ; + "2021-04-13" ; + "PMID:19139201" ; + "2009-08-15" ; + "http://informatics.jax.org" ; + rdfs:comment "ADD-IDO Staphylococcus aureus subsp. aureus MW2 ; taxon:196620 Staphylococcus aureus subsp. aureus MSSA476 ; taxon:282459" , + "evidence survival curves" . + + +### http://model.geneontology.org/MGI_MGI_2429397/ccedc97f-f7e4-47b8-ae86-3cb773b56bf9 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-17" ; + "PMID:15692051" ; + "2007-12-17" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence IB" . + + +### http://model.geneontology.org/MGI_MGI_2429397/ccfd4331-f226-4cad-8a6c-c6ada5f4336e + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "PMID:15220916" ; + "2007-12-20" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" , + "macrophages from Nod2 KO mice transfected with wildtype mouse Nod2" . + + +### http://model.geneontology.org/MGI_MGI_2429397/cd365c53-5acf-4c06-b31d-6f9d98de47e1 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-7476-6306" ; + "2015-10-23" ; + "2015-10-23" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/cdc0c463-a80a-4e54-b2ea-ddb56a9e2eb3 + rdf:type owl:NamedIndividual , + ; + ; + ; + "10115.625"^^xsd:string ; + "381.25"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2007-12-20" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + , + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-20" ; + "2007-12-20" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0032494 MGI:MGI:3050756|PMID:15220916 ECO:0000314 2007-12-20 MGI creation-date=2007-12-20|modification-date=2007-12-20|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|comment=has_participant(CL:0000235)|comment=macrophages from Nod2 KO mice transfected with wildtype mouse Nod2|contributor-id=https://orcid.org/0000-0001-9990-8331" , + "MGI:MGI:2429397 RO:0002264 GO:0032494 MGI:MGI:3050756|PMID:15220916 ECO:0000315 MGI:MGI:2680581 2007-12-20 MGI creation-date=2007-12-20|modification-date=2007-12-20|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|comment=has_participant(CL:0000235)|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + , + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-20" ; + "2007-12-20" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0032494 MGI:MGI:3050756|PMID:15220916 ECO:0000314 2007-12-20 MGI creation-date=2007-12-20|modification-date=2007-12-20|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|comment=has_participant(CL:0000235)|comment=macrophages from Nod2 KO mice transfected with wildtype mouse Nod2|contributor-id=https://orcid.org/0000-0001-9990-8331" , + "MGI:MGI:2429397 RO:0002264 GO:0032494 MGI:MGI:3050756|PMID:15220916 ECO:0000315 MGI:MGI:2680581 2007-12-20 MGI creation-date=2007-12-20|modification-date=2007-12-20|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|comment=has_participant(CL:0000235)|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/cdf60415-4120-4c02-b74c-9242a7867727 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-08-15" ; + "PMID:19139201" ; + "2009-08-15" ; + "http://informatics.jax.org" ; + rdfs:comment "ADD-IDO" , + "anatomy blood ; MA:0000059" , + "cell type neutrophil ; CL:0000775" , + "evidence cell counts" . + + +### http://model.geneontology.org/MGI_MGI_2429397/cee63e0a-cb57-4d2a-a57e-32ee4504669b + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:2680581" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-20" ; + "PMID:15220916" ; + "2007-12-20" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" , + "has_participant(CL:0000235)" . + + +### http://model.geneontology.org/MGI_MGI_2429397/cfa8450c-8110-401a-912e-81ea26611576 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0003-3394-9805" ; + "2014-05-14" ; + "PMID:23892723" ; + "2014-05-14" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/d06b9035-63e9-4493-9a77-09c197ec7005 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-17" ; + "PMID:15692051" ; + "2007-12-17" ; + "http://informatics.jax.org" ; + rdfs:comment "evidence ELISA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/d06becd3-4209-4143-82cc-f1820ecf57c9 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:2680581" ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "PMID:15220916" ; + "2007-12-20" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/d0a716f6-31be-4d6b-a53f-c5676782e4f2 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:1341839" ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "PMID:18261938" ; + "2009-02-16" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" , + "evidence IB" . + + +### http://model.geneontology.org/MGI_MGI_2429397/d1e7f907-6acf-4ed6-9438-9a569a5b79c5 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-08-15" ; + "2009-08-15" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/d3d3f250-ebab-41a0-8844-69f020864b51 + rdf:type owl:NamedIndividual , + ; + ; + ; + "7359.375"^^xsd:string ; + "381.25"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" , + "https://orcid.org/0000-0002-9796-7693" ; + "2023-09-28"^^xsd:string ; + "2009-08-15" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" , + "https://orcid.org/0000-0002-9796-7693" ; + "2021-04-13" ; + "2009-08-15" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0050830 MGI:MGI:3839525|PMID:19139201 ECO:0000315 MGI:MGI:3529594 2021-04-13 MGI RO:0002233(taxon:196620)|RO:0002233(taxon:282459) creation-date=2009-08-15|modification-date=2021-04-13|comment=evidence survival curves|comment=ADD-IDO Staphylococcus aureus subsp. aureus MW2 ; taxon:196620 Staphylococcus aureus subsp. aureus MSSA476 ; taxon:282459|contributor-id=https://orcid.org/0000-0002-9796-7693|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" , + "https://orcid.org/0000-0002-9796-7693" ; + "2021-04-13" ; + "2009-08-15" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0050830 MGI:MGI:3839525|PMID:19139201 ECO:0000315 MGI:MGI:3529594 2021-04-13 MGI RO:0002233(taxon:196620)|RO:0002233(taxon:282459) creation-date=2009-08-15|modification-date=2021-04-13|comment=evidence survival curves|comment=ADD-IDO Staphylococcus aureus subsp. aureus MW2 ; taxon:196620 Staphylococcus aureus subsp. aureus MSSA476 ; taxon:282459|contributor-id=https://orcid.org/0000-0002-9796-7693|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/d400b6e6-3576-493e-bb25-c62c046631c4 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:2680581" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-14" ; + "PMID:14560001" ; + "2007-12-14" ; + "http://informatics.jax.org" ; + rdfs:comment "evidence in vivo challenge with endotoxin" . + + +### http://model.geneontology.org/MGI_MGI_2429397/d60aca82-830a-4b42-9114-27ae8e2196a4 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-08-15" ; + "2009-08-15" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/d732da79-0f1f-4d74-9c82-e60284c102b6 + rdf:type owl:NamedIndividual , + ; + ; + ; + "14053.125"^^xsd:string ; + "381.25"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2010-08-19" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2010-08-19" ; + "2010-08-19" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0032695 MGI:MGI:3686795|PMID:16949315 ECO:0000315 MGI:MGI:2680581 2010-08-19 MGI creation-date=2010-08-19|modification-date=2010-08-19|comment=evidence ELISA|comment=CD11b-positive splenocytes used|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2010-08-19" ; + "2010-08-19" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0032695 MGI:MGI:3686795|PMID:16949315 ECO:0000315 MGI:MGI:2680581 2010-08-19 MGI creation-date=2010-08-19|modification-date=2010-08-19|comment=evidence ELISA|comment=CD11b-positive splenocytes used|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/d796603a-bfdf-46ea-a66d-3ede9b33b2bd + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "PMID:18261938" ; + "2009-02-16" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" , + "evidence IB" . + + +### http://model.geneontology.org/MGI_MGI_2429397/d7ae741e-d3da-49d9-b73e-a568877e86f1 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-17" ; + "PMID:15692051" ; + "2007-12-17" ; + "http://informatics.jax.org" ; + rdfs:comment "anatomy ileum ; MA:0000339" , + "evidence RT-PCR" , + "evidence bacterial counts in liver and spleen following instestinal infection with L. moncytogenes" , + "regulates_o_has_participant(EMAPA:32764 TS28)" . + + +### http://model.geneontology.org/MGI_MGI_2429397/d8125009-2df4-4de3-bef4-4cb2cf24884d + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "2009-02-16" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/d97d48cb-113b-4b04-93e2-1f2f628ce2ac + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-9990-8331" , + "https://orcid.org/0000-0002-9796-7693" ; + "2021-04-13" ; + "2009-08-15" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/d9e0c024-501d-4088-9cf0-1e55b0cc397f + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-02-17" ; + "PMID:18261938" ; + "2009-02-17" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence IB" . + + +### http://model.geneontology.org/MGI_MGI_2429397/da7c6794-5674-4939-8257-782541a8a21c + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-7476-6306" ; + "2013-08-02" ; + "2013-08-02" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/dbe01587-1081-4042-b790-65fe2bb0f271 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-17" ; + "PMID:15692051" ; + "2007-12-17" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence IB" . + + +### http://model.geneontology.org/MGI_MGI_2429397/dc172ffd-6ad8-4251-8033-cac9f922a1ce + rdf:type owl:NamedIndividual , + ; + ; + "19762.5"^^xsd:string ; + "75"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2007-12-17" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-17" ; + "2007-12-17" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0050731 MGI:MGI:3528786|PMID:15692051 ECO:0000315 MGI:MGI:3529594 2007-12-17 MGI GOREL:0001004(CL:0000235) creation-date=2007-12-17|modification-date=2007-12-17|comment=cell type macrophage ; CL:0000235|comment=evidence IB|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/dc1cf788-9455-423c-8ac0-d57815790e1e + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2008-01-22" ; + "2008-01-22" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/dc458080-28c0-40d1-bf9a-83e3062ee287 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-08-15" ; + "2009-08-15" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/dc499135-ffa3-4908-b038-211f52bed0ce + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-08-15" ; + "2009-08-15" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/dcc376b8-aae1-4e47-a09a-2f78e7dea9c9 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-02-16" ; + "PMID:18261938" ; + "2009-02-16" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence IB" . + + +### http://model.geneontology.org/MGI_MGI_2429397/dd25f8bb-81e3-4bc9-9411-9f8c537ce261 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:2680581" ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "PMID:15220916" ; + "2007-12-20" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/de14e1ae-3f2d-4c7b-84a3-5de6652281bc + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" , + "https://orcid.org/0000-0002-9796-7693" ; + "2021-03-23" ; + "2007-12-20" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/e2caaa0a-3c29-49c7-9500-2ab0c0f0d57c + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-7476-6306" ; + "2015-10-23" ; + "PMID:22033934" ; + "2015-10-23" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/e32f878f-06cc-4e4f-8fa8-f17667f0e431 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-08-15" ; + "PMID:19139201" ; + "2009-08-15" ; + "http://informatics.jax.org" ; + rdfs:comment "ADD-IDO" , + "anatomy serum ; MA:0002502" , + "evidence ELISA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/e3865d6a-daeb-44e6-88af-b352f7868d7d + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "PMID:15692051" ; + "2007-12-17" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/e3b8ef23-24c8-418e-afa4-055cc0cf25f6 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-17" ; + "2007-12-17" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/e4426ce7-4729-410d-8bba-99a9e9c51fe2 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "2007-12-20" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/e4558c8e-2551-4d6f-80f9-804e0f385682 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-17" ; + "PMID:15692051" ; + "2007-12-17" ; + "http://informatics.jax.org" ; + rdfs:comment "evidence ELISA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/e551b38e-a024-44c9-83cb-ffd4c8db10b5 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-17" ; + "PMID:15692051" ; + "2007-12-17" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/e6324187-79c5-4050-b7f8-1a9df31ccb9f + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-08-15" ; + "PMID:19139201" ; + "2009-08-15" ; + "http://informatics.jax.org" ; + rdfs:comment "ADD-IDO" , + "anatomy serum ; MA:0002502" , + "evidence ELISA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/e6401e53-38db-4dbe-b475-43eb4704e156 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0002-9796-7693" ; + "2013-10-30" ; + "PMID:18167348" ; + "2013-10-30" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/e6e436dc-17e9-4eac-bd83-be4fc2d1ab36 + rdf:type owl:NamedIndividual , + ; + ; + ; + "8343.75"^^xsd:string ; + "687.5"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2008-01-22" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2008-01-22" ; + "2008-01-22" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0034136 MGI:MGI:3050756|PMID:15220916 ECO:0000315 MGI:MGI:2680581 2008-01-22 MGI GOREL:0001004(CL:0000235) creation-date=2008-01-22|modification-date=2008-01-22|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2008-01-22" ; + "2008-01-22" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0034136 MGI:MGI:3050756|PMID:15220916 ECO:0000315 MGI:MGI:2680581 2008-01-22 MGI GOREL:0001004(CL:0000235) creation-date=2008-01-22|modification-date=2008-01-22|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/e799cd1f-af37-416a-992d-c97bc56b6872 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0003-3394-9805" ; + "2020-04-03" ; + "2007-04-10" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/e8ebd56e-841c-45a1-900e-7b16a564ba9c + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-7476-6306" ; + "2015-10-23" ; + "PMID:22033934" ; + "2015-10-23" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/e8fb37ba-60c6-43e2-8700-bc4a629a7496 + rdf:type owl:NamedIndividual , + ; + ; + ; + "3421.875"^^xsd:string ; + "381.25"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2007-12-14" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-14" ; + "2007-12-14" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0032496 MGI:MGI:2679172|PMID:14560001 ECO:0000315 MGI:MGI:2680581 2007-12-14 MGI creation-date=2007-12-14|modification-date=2007-12-14|comment=evidence in vivo challenge with endotoxin|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-14" ; + "2007-12-14" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0032496 MGI:MGI:2679172|PMID:14560001 ECO:0000315 MGI:MGI:2680581 2007-12-14 MGI creation-date=2007-12-14|modification-date=2007-12-14|comment=evidence in vivo challenge with endotoxin|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/e936222c-511b-4ab6-abf0-ba3e8697ca14 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-02-16" ; + "PMID:18261938" ; + "2009-02-16" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence IB" . + + +### http://model.geneontology.org/MGI_MGI_2429397/eabb8a5b-0387-4a36-8ab8-b0b4ef7b3d36 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0002-9796-7693" ; + "2013-10-30" ; + "PMID:18167348" ; + "2013-10-30" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/ebcc7443-41f8-4690-8f5a-6153b7348bf6 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-7476-6306" ; + "2015-10-23" ; + "2015-10-23" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/ebe40b23-8b6e-4d9a-8893-e02f9cb7d969 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-20" ; + "PMID:15220916" ; + "2007-12-20" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" , + "macrophages from Nod2 KO mice transfected with wildtype mouse Nod2" . + + +### http://model.geneontology.org/MGI_MGI_2429397/ebec2262-a691-415c-a854-50d5679f1468 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "PMID:18261938" ; + "2009-02-16" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" , + "evidence IB" . + + +### http://model.geneontology.org/MGI_MGI_2429397/ec51a1f7-e156-447c-82c3-1e91c0732a5b + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "PMID:18261938" ; + "2009-02-16" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" , + "evidence IB" . + + +### http://model.geneontology.org/MGI_MGI_2429397/ed38ef47-e79b-4455-848d-0aa23944c2c1 + rdf:type owl:NamedIndividual , + ; + ; + ; + "11887.5"^^xsd:string ; + "687.5"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2007-12-17" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + , + , + , + ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "2007-12-17" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0032755 MGI:MGI:3528786|PMID:15692051 ECO:0000315 MGI:MGI:3529594 2020-12-07 MGI GOREL:0001004(CL:0000235) creation-date=2007-12-17|modification-date=2020-12-07|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|contributor-id=https://orcid.org/0000-0001-9990-8331|contributor-id=https://orcid.org/0000-0001-7476-6306" , + "MGI:MGI:2429397 RO:0002264 GO:0032755 MGI:MGI:3775161|PMID:18261938 ECO:0000314 2020-12-07 MGI GOREL:0001004(CL:0000235) creation-date=2009-02-16|modification-date=2020-12-07|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|contributor-id=https://orcid.org/0000-0001-9990-8331|contributor-id=https://orcid.org/0000-0001-7476-6306" , + "MGI:MGI:2429397 RO:0002264 GO:0032755 MGI:MGI:3775161|PMID:18261938 ECO:0000315 MGI:MGI:3529594 2020-12-07 MGI GOREL:0001004(CL:0000235) creation-date=2009-02-16|modification-date=2020-12-07|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|comment=evidence IB|contributor-id=https://orcid.org/0000-0001-7476-6306|contributor-id=https://orcid.org/0000-0001-9990-8331" , + "MGI:MGI:2429397 RO:0002264 GO:0032755 MGI:MGI:3775161|PMID:18261938 ECO:0000316 MGI:MGI:1341839 2020-12-07 MGI GOREL:0001004(CL:0000235) creation-date=2009-02-16|modification-date=2020-12-07|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|comment=evidence IB|contributor-id=https://orcid.org/0000-0001-9990-8331|contributor-id=https://orcid.org/0000-0001-7476-6306" + ] . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + , + , + , + ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "2007-12-17" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0032755 MGI:MGI:3528786|PMID:15692051 ECO:0000315 MGI:MGI:3529594 2020-12-07 MGI GOREL:0001004(CL:0000235) creation-date=2007-12-17|modification-date=2020-12-07|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|contributor-id=https://orcid.org/0000-0001-9990-8331|contributor-id=https://orcid.org/0000-0001-7476-6306" , + "MGI:MGI:2429397 RO:0002264 GO:0032755 MGI:MGI:3775161|PMID:18261938 ECO:0000314 2020-12-07 MGI GOREL:0001004(CL:0000235) creation-date=2009-02-16|modification-date=2020-12-07|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|contributor-id=https://orcid.org/0000-0001-9990-8331|contributor-id=https://orcid.org/0000-0001-7476-6306" , + "MGI:MGI:2429397 RO:0002264 GO:0032755 MGI:MGI:3775161|PMID:18261938 ECO:0000315 MGI:MGI:3529594 2020-12-07 MGI GOREL:0001004(CL:0000235) creation-date=2009-02-16|modification-date=2020-12-07|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|comment=evidence IB|contributor-id=https://orcid.org/0000-0001-7476-6306|contributor-id=https://orcid.org/0000-0001-9990-8331" , + "MGI:MGI:2429397 RO:0002264 GO:0032755 MGI:MGI:3775161|PMID:18261938 ECO:0000316 MGI:MGI:1341839 2020-12-07 MGI GOREL:0001004(CL:0000235) creation-date=2009-02-16|modification-date=2020-12-07|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|comment=evidence IB|contributor-id=https://orcid.org/0000-0001-9990-8331|contributor-id=https://orcid.org/0000-0001-7476-6306" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/ed5b3055-6d81-4642-9045-a8d5f604b11b + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-17" ; + "PMID:15692051" ; + "2007-12-17" ; + "http://informatics.jax.org" ; + rdfs:comment "anatomy ileum ; MA:0000339" , + "evidence RT-PCR" , + "evidence bacterial counts in liver and spleen following instestinal infection with L. moncytogenes" , + "has_participant(EMAPA:32764 TS28)" . + + +### http://model.geneontology.org/MGI_MGI_2429397/ed8f002c-483e-4b01-aef3-b9f96d909569 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-9990-8331" , + "https://orcid.org/0000-0002-9796-7693" ; + "2021-04-13" ; + "PMID:19139201" ; + "2009-08-15" ; + "http://informatics.jax.org" ; + rdfs:comment "ADD-IDO Staphylococcus aureus subsp. aureus MW2 ; taxon:196620 Staphylococcus aureus subsp. aureus MSSA476 ; taxon:282459" , + "evidence survival curves" . + + +### http://model.geneontology.org/MGI_MGI_2429397/edcb8990-d714-4327-bcf2-418d46f953ea + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:2680581" ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "PMID:15220916" ; + "2007-12-20" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/eeb59af6-ef42-4e10-9cff-02f3e44ad588 + rdf:type owl:NamedIndividual , + ; + "UniProtKB:Q9HC29" ; + "https://orcid.org/0000-0001-9990-8331" , + "https://orcid.org/0000-0003-3394-9805" ; + "2009-02-16" ; + "PMID:17187069" ; + "2007-04-06" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type 293 ; ATCC:0000013 ; CRL-1573" , + "evidence inferred from Western blot assay ; ECO:0000112" , + "evidence:immunoblot of MAPK phosphorylation" , + "target JNK1 ; JNK2" . + + +### http://model.geneontology.org/MGI_MGI_2429397/efd25a4c-58d0-4870-b365-dedb5d8b24cd + rdf:type owl:NamedIndividual , + ; + ; + ; + "12675"^^xsd:string ; + "687.5"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2007-12-14" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + , + , + , + ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "2007-12-14" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0032735 MGI:MGI:2679172|PMID:14560001 ECO:0000315 MGI:MGI:2680581 2020-12-07 MGI GOREL:0001004(CL:0000235) creation-date=2007-12-14|modification-date=2020-12-07|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|contributor-id=https://orcid.org/0000-0001-9990-8331|contributor-id=https://orcid.org/0000-0001-7476-6306" , + "MGI:MGI:2429397 RO:0002264 GO:0032735 MGI:MGI:3050756|PMID:15220916 ECO:0000314 2020-12-07 MGI GOREL:0001004(CL:0000235) creation-date=2007-12-20|modification-date=2020-12-07|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|comment=macrophages from Nod2 KO mice transfected with wildtype mouse Nod2|contributor-id=https://orcid.org/0000-0001-9990-8331|contributor-id=https://orcid.org/0000-0001-7476-6306" , + "MGI:MGI:2429397 RO:0002264 GO:0032735 MGI:MGI:3050756|PMID:15220916 ECO:0000315 MGI:MGI:2680581 2020-12-07 MGI GOREL:0001004(CL:0000235) creation-date=2007-12-20|modification-date=2020-12-07|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|contributor-id=https://orcid.org/0000-0001-7476-6306|contributor-id=https://orcid.org/0000-0001-9990-8331" , + "MGI:MGI:2429397 RO:0002264 GO:0032735 MGI:MGI:3528786|PMID:15692051 ECO:0000315 MGI:MGI:3529594 2020-12-07 MGI GOREL:0001004(CL:0000235) creation-date=2007-12-17|modification-date=2020-12-07|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|contributor-id=https://orcid.org/0000-0001-9990-8331|contributor-id=https://orcid.org/0000-0001-7476-6306" + ] . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + , + , + , + ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "2007-12-14" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0032735 MGI:MGI:2679172|PMID:14560001 ECO:0000315 MGI:MGI:2680581 2020-12-07 MGI GOREL:0001004(CL:0000235) creation-date=2007-12-14|modification-date=2020-12-07|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|contributor-id=https://orcid.org/0000-0001-9990-8331|contributor-id=https://orcid.org/0000-0001-7476-6306" , + "MGI:MGI:2429397 RO:0002264 GO:0032735 MGI:MGI:3050756|PMID:15220916 ECO:0000314 2020-12-07 MGI GOREL:0001004(CL:0000235) creation-date=2007-12-20|modification-date=2020-12-07|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|comment=macrophages from Nod2 KO mice transfected with wildtype mouse Nod2|contributor-id=https://orcid.org/0000-0001-9990-8331|contributor-id=https://orcid.org/0000-0001-7476-6306" , + "MGI:MGI:2429397 RO:0002264 GO:0032735 MGI:MGI:3050756|PMID:15220916 ECO:0000315 MGI:MGI:2680581 2020-12-07 MGI GOREL:0001004(CL:0000235) creation-date=2007-12-20|modification-date=2020-12-07|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|contributor-id=https://orcid.org/0000-0001-7476-6306|contributor-id=https://orcid.org/0000-0001-9990-8331" , + "MGI:MGI:2429397 RO:0002264 GO:0032735 MGI:MGI:3528786|PMID:15692051 ECO:0000315 MGI:MGI:3529594 2020-12-07 MGI GOREL:0001004(CL:0000235) creation-date=2007-12-17|modification-date=2020-12-07|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|contributor-id=https://orcid.org/0000-0001-9990-8331|contributor-id=https://orcid.org/0000-0001-7476-6306" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/f01d806d-e8c7-4ff1-b72b-10ca710b791f + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-17" ; + "PMID:15692051" ; + "2007-12-17" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/f06b1242-7e5b-465b-bb10-b3c47ffa9bcb + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-17" ; + "PMID:15692051" ; + "2007-12-17" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/f1c5eb64-0ba1-4412-b753-4a679d3e2807 + rdf:type owl:NamedIndividual , + ; + "19368.75"^^xsd:string ; + "75"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2010-08-19" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/f20b97d5-40f9-4860-a73c-679a76609858 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "PMID:18261938" ; + "2009-02-16" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" , + "evidence IB" . + + +### http://model.geneontology.org/MGI_MGI_2429397/f2800170-3fa0-47ef-b8c8-408f847df3b2 + rdf:type owl:NamedIndividual , + ; + ; + ; + "6178.125"^^xsd:string ; + "381.25"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2009-08-15" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2010-02-09" ; + "2009-08-15" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0071608 MGI:MGI:3839525|PMID:19139201 ECO:0000315 MGI:MGI:3529594 2010-02-09 MGI BFO:0000066(EMAPA:35770) creation-date=2009-08-15|modification-date=2010-02-09|comment=anatomy serum ; MA:0002502|comment=evidence ELISA|comment=ADD-IDO|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2010-02-09" ; + "2009-08-15" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0071608 MGI:MGI:3839525|PMID:19139201 ECO:0000315 MGI:MGI:3529594 2010-02-09 MGI BFO:0000066(EMAPA:35770) creation-date=2009-08-15|modification-date=2010-02-09|comment=anatomy serum ; MA:0002502|comment=evidence ELISA|comment=ADD-IDO|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/f2e4110d-8fa8-45dd-bebc-b5a13fe1cacf + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2010-08-19" ; + "2010-08-19" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/f35d30f5-6383-4c99-bbd7-aae84cbf38b9 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-7476-6306" ; + "2013-12-30" ; + "PMID:19218085" ; + "2013-12-30" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/f3c9bcb4-ec60-42fd-8ecb-eb73a093d0f9 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "PMID:18261938" ; + "2009-02-16" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/f54aac98-139f-4f40-b043-7985cb2d8cfe + rdf:type owl:NamedIndividual , + ; + ; + ; + "19959.375"^^xsd:string ; + "381.25"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2007-12-17" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-17" ; + "2007-12-17" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0032496 MGI:MGI:3528786|PMID:15692051 ECO:0000315 MGI:MGI:3529594 2007-12-17 MGI BFO:0000066(CL:0000235) creation-date=2007-12-17|modification-date=2007-12-17|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-17" ; + "2007-12-17" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0032496 MGI:MGI:3528786|PMID:15692051 ECO:0000315 MGI:MGI:3529594 2007-12-17 MGI BFO:0000066(CL:0000235) creation-date=2007-12-17|modification-date=2007-12-17|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/f59d2303-ffe1-40c8-ba93-68f0edeee6ef + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-08-15" ; + "PMID:19139201" ; + "2009-08-15" ; + "http://informatics.jax.org" ; + rdfs:comment "ADD-IDO" , + "anatomy serum ; MA:0002502" , + "evidence ELISA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/f5c2d141-37b9-46e6-95a2-0cda103b465e + rdf:type owl:NamedIndividual , + ; + ; + ; + "7753.125"^^xsd:string ; + "381.25"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306" ; + "2023-09-28"^^xsd:string ; + "2013-12-30" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-7476-6306" ; + "2013-12-30" ; + "2013-12-30" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0050727 MGI:MGI:5297103|PMID:19218085 ECO:0000315 MGI:MGI:3529594 2013-12-30 MGI creation-date=2013-12-30|modification-date=2013-12-30|contributor-id=https://orcid.org/0000-0001-7476-6306" + ] . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-7476-6306" ; + "2013-12-30" ; + "2013-12-30" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0050727 MGI:MGI:5297103|PMID:19218085 ECO:0000315 MGI:MGI:3529594 2013-12-30 MGI creation-date=2013-12-30|modification-date=2013-12-30|contributor-id=https://orcid.org/0000-0001-7476-6306" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/f5e407f7-6c26-4e00-b754-3d4ab9b2655c + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:2680581" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2010-08-19" ; + "PMID:16949315" ; + "2010-08-19" ; + "http://informatics.jax.org" ; + rdfs:comment "CD11b-positive splenocytes used" , + "evidence ELISA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/f65115da-e3fe-4af2-aaf0-27921912cb96 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "2007-12-20" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/f679238f-063d-4f13-81d3-3c3bada95e25 + rdf:type owl:NamedIndividual , + ; + ; + ; + "10312.5"^^xsd:string ; + "687.5"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306" ; + "2023-09-28"^^xsd:string ; + "2015-10-23" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-7476-6306" ; + "2015-10-23" ; + "2015-10-23" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:1904417 MGI:MGI:5299952|PMID:22033934 ECO:0000315 MGI:MGI:3529594 2015-10-23 MGI BFO:0000066(CL:0000235),GOREL:0001004(CL:0000235)|BFO:0000066(CL:0000451),GOREL:0001004(CL:0000451) creation-date=2015-10-23|modification-date=2015-10-23|contributor-id=https://orcid.org/0000-0001-7476-6306" + ] . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-7476-6306" ; + "2015-10-23" ; + "2015-10-23" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:1904417 MGI:MGI:5299952|PMID:22033934 ECO:0000315 MGI:MGI:3529594 2015-10-23 MGI BFO:0000066(CL:0000235),GOREL:0001004(CL:0000235)|BFO:0000066(CL:0000451),GOREL:0001004(CL:0000451) creation-date=2015-10-23|modification-date=2015-10-23|contributor-id=https://orcid.org/0000-0001-7476-6306" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/f6a2420b-f0f9-42ba-85c5-a81403c1b7a9 + rdf:type owl:NamedIndividual , + ; + ; + ; + "12281.25"^^xsd:string ; + "687.5"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2009-02-16" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-02-16" ; + "2009-02-16" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0046330 MGI:MGI:3775161|PMID:18261938 ECO:0000314 2009-02-16 MGI GOREL:0001004(CL:0000235) creation-date=2009-02-16|modification-date=2009-02-16|comment=cell type macrophage ; CL:0000235|comment=evidence IB|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-02-16" ; + "2009-02-16" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0046330 MGI:MGI:3775161|PMID:18261938 ECO:0000314 2009-02-16 MGI GOREL:0001004(CL:0000235) creation-date=2009-02-16|modification-date=2009-02-16|comment=cell type macrophage ; CL:0000235|comment=evidence IB|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/f7388802-26fc-489d-833e-c63a6167dcea + rdf:type owl:NamedIndividual , + ; + "18975"^^xsd:string ; + "75"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" , + "https://orcid.org/0000-0003-3394-9805" ; + "2023-09-27"^^xsd:string ; + "2007-04-06" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/f86538cc-f1bf-460d-9f22-39d881ef885c + rdf:type owl:NamedIndividual , + ; + ; + "18581.25"^^xsd:string ; + "75"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2007-12-17" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-17" ; + "2007-12-17" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0043410 MGI:MGI:3528786|PMID:15692051 ECO:0000315 MGI:MGI:3529594 2007-12-17 MGI GOREL:0001004(CL:0000235) creation-date=2007-12-17|modification-date=2007-12-17|comment=cell type macrophage ; CL:0000235|comment=evidence IB|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/fa08501b-fcfb-4d9e-825c-086885d3aebb + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:2680581" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2010-08-19" ; + "PMID:16949315" ; + "2010-08-19" ; + "http://informatics.jax.org" ; + rdfs:comment "CD11b-positive splenocytes used" , + "evidence ELISA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/fb0d1d8f-ad1e-447d-bf23-cb34e85a32b9 + rdf:type owl:NamedIndividual , + ; + "UniProtKB:Q9HC29" ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2010-11-04" ; + "GO_REF:0000008" ; + "2009-08-27" ; + "http://informatics.jax.org" ; + rdfs:comment "ADD-IDO" , + "cell type permanent cell line ; CLO:0000019 293 [HEK293] ; ATCC:CRL-1573" , + "evidence NF-kappaB activation assay" , + "external ref PMID:12527755 IDA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/fb108be5-688f-4833-8cb6-66c85c77654c + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-9990-8331" , + "https://orcid.org/0000-0003-3394-9805" ; + "2009-02-16" ; + "2007-04-06" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/fb3ab433-555d-4670-afed-09d15720021f + rdf:type owl:NamedIndividual , + ; + ; + ; + "14840.625"^^xsd:string ; + "381.25"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2010-08-19" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2010-08-19" ; + "2010-08-19" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0002710 MGI:MGI:3686795|PMID:16949315 ECO:0000315 MGI:MGI:2680581 2010-08-19 MGI creation-date=2010-08-19|modification-date=2010-08-19|comment=anatomy colon ; MA:0000335|comment=evidence histology|comment=regulates_o_has_participant(EMAPA:18939 TS28)|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2010-08-19" ; + "2010-08-19" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0002710 MGI:MGI:3686795|PMID:16949315 ECO:0000315 MGI:MGI:2680581 2010-08-19 MGI creation-date=2010-08-19|modification-date=2010-08-19|comment=anatomy colon ; MA:0000335|comment=evidence histology|comment=regulates_o_has_participant(EMAPA:18939 TS28)|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/fb7abe8c-95a2-4a02-bf24-065413966999 + rdf:type owl:NamedIndividual , + ; + ; + "18187.5"^^xsd:string ; + "75"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" , + "https://orcid.org/0000-0002-9796-7693" ; + "2023-09-28"^^xsd:string ; + "2009-08-15" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" , + "https://orcid.org/0000-0002-9796-7693" ; + "2021-04-13" ; + "2009-08-15" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0050830 MGI:MGI:3839525|PMID:19139201 ECO:0000315 MGI:MGI:3529594 2021-04-13 MGI RO:0002233(taxon:196620)|RO:0002233(taxon:282459) creation-date=2009-08-15|modification-date=2021-04-13|comment=evidence survival curves|comment=ADD-IDO Staphylococcus aureus subsp. aureus MW2 ; taxon:196620 Staphylococcus aureus subsp. aureus MSSA476 ; taxon:282459|contributor-id=https://orcid.org/0000-0002-9796-7693|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/fb8708ba-04be-4c17-a3aa-57450d224894 + rdf:type owl:NamedIndividual , + ; + ; + "17793.75"^^xsd:string ; + "75"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2009-08-15" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-08-15" ; + "2009-08-15" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0050766 MGI:MGI:3839525|PMID:19139201 ECO:0000315 MGI:MGI:3529594 2009-08-15 MGI GOREL:0001004(CL:0000775) creation-date=2009-08-15|modification-date=2009-08-15|comment=cell type neutrophil ; CL:0000775|comment=evidence phagocytosis assay|comment=ADD-IDO|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/fb9fa4fc-d342-45b5-9b64-2e1e800364c6 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-17" ; + "2007-12-17" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/fbadf1cc-b544-4e87-963c-8881d50d9b18 + rdf:type owl:NamedIndividual , + ; + "17400"^^xsd:string ; + "75"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-27"^^xsd:string ; + "2009-08-27" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/fbbe91a5-275a-4b20-bf3f-43bca90f712d + rdf:type owl:NamedIndividual , + ; + "17006.25"^^xsd:string ; + "75"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2007-12-17" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/fc6e5958-7a11-40ef-adf1-e0230d2fc602 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-02-16" ; + "2009-02-16" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/fd849330-1b70-485c-897c-e3801bc07d90 + rdf:type owl:NamedIndividual , + ; + ; + "16612.5"^^xsd:string ; + "75"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2007-12-14" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + , + , + , + ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "2007-12-14" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0032735 MGI:MGI:2679172|PMID:14560001 ECO:0000315 MGI:MGI:2680581 2020-12-07 MGI GOREL:0001004(CL:0000235) creation-date=2007-12-14|modification-date=2020-12-07|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|contributor-id=https://orcid.org/0000-0001-9990-8331|contributor-id=https://orcid.org/0000-0001-7476-6306" , + "MGI:MGI:2429397 RO:0002264 GO:0032735 MGI:MGI:3050756|PMID:15220916 ECO:0000314 2020-12-07 MGI GOREL:0001004(CL:0000235) creation-date=2007-12-20|modification-date=2020-12-07|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|comment=macrophages from Nod2 KO mice transfected with wildtype mouse Nod2|contributor-id=https://orcid.org/0000-0001-9990-8331|contributor-id=https://orcid.org/0000-0001-7476-6306" , + "MGI:MGI:2429397 RO:0002264 GO:0032735 MGI:MGI:3050756|PMID:15220916 ECO:0000315 MGI:MGI:2680581 2020-12-07 MGI GOREL:0001004(CL:0000235) creation-date=2007-12-20|modification-date=2020-12-07|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|contributor-id=https://orcid.org/0000-0001-7476-6306|contributor-id=https://orcid.org/0000-0001-9990-8331" , + "MGI:MGI:2429397 RO:0002264 GO:0032735 MGI:MGI:3528786|PMID:15692051 ECO:0000315 MGI:MGI:3529594 2020-12-07 MGI GOREL:0001004(CL:0000235) creation-date=2007-12-17|modification-date=2020-12-07|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|contributor-id=https://orcid.org/0000-0001-9990-8331|contributor-id=https://orcid.org/0000-0001-7476-6306" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/fe25f788-b8c3-4ef3-a820-9f3644a5ff3d + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-17" ; + "PMID:15692051" ; + "2007-12-17" ; + "http://informatics.jax.org" ; + rdfs:comment "anatomy ileum ; MA:0000339" , + "evidence RT-PCR" . + + +### http://model.geneontology.org/MGI_MGI_2429397/fe842cc0-a60f-4e2a-ad60-88f5b410e128 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "PMID:18261938" ; + "2009-02-16" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" , + "evidence IB" . + + +### http://model.geneontology.org/MGI_MGI_2429397/feb2110e-5c5c-4685-a159-e667c9082980 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "PMID:18261938" ; + "2009-02-16" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/ffad7290-f5ea-4d2a-98d9-c92c91542efc + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-9990-8331" , + "https://orcid.org/0000-0002-9796-7693" ; + "2021-04-13" ; + "2009-08-15" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/ffe699c5-4c99-49d6-902c-1e5639e32820 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "2007-12-20" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/0a288b00-0825-4d25-a590-a931eea9efde + rdf:type owl:NamedIndividual , + ; + ; + ; + "12084.375"^^xsd:string ; + "381.25"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" , + "https://orcid.org/0000-0003-3394-9805" ; + "2023-09-28"^^xsd:string ; + "2007-04-06" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" , + "https://orcid.org/0000-0003-3394-9805" ; + "2009-02-16" ; + "2007-04-06" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0046330 MGI:MGI:3697751|PMID:17187069 ECO:0000266 UniProtKB:Q9HC29 2009-02-16 MGI creation-date=2007-04-06|modification-date=2009-02-16|comment=cell type 293 ; ATCC:0000013 ; CRL-1573|comment=evidence inferred from Western blot assay ; ECO:0000112|comment=target JNK1 ; JNK2|comment=evidence:immunoblot of MAPK phosphorylation|contributor-id=https://orcid.org/0000-0001-9990-8331|contributor-id=https://orcid.org/0000-0003-3394-9805" + ] . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" , + "https://orcid.org/0000-0003-3394-9805" ; + "2009-02-16" ; + "2007-04-06" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0046330 MGI:MGI:3697751|PMID:17187069 ECO:0000266 UniProtKB:Q9HC29 2009-02-16 MGI creation-date=2007-04-06|modification-date=2009-02-16|comment=cell type 293 ; ATCC:0000013 ; CRL-1573|comment=evidence inferred from Western blot assay ; ECO:0000112|comment=target JNK1 ; JNK2|comment=evidence:immunoblot of MAPK phosphorylation|contributor-id=https://orcid.org/0000-0001-9990-8331|contributor-id=https://orcid.org/0000-0003-3394-9805" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/0abae63d-5bb3-4967-be4d-2d6214bef1e3 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:2680581" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2008-01-22" ; + "PMID:15220916" ; + "2008-01-22" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/0bbd1fb7-bae9-4a07-8523-d01a1dfac8f2 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-02-16" ; + "PMID:18261938" ; + "2009-02-16" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence IB" . + + +### http://model.geneontology.org/MGI_MGI_2429397/0c697b4c-dc88-4295-8dd8-79590264d9bd + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2010-02-09" ; + "PMID:19139201" ; + "2009-08-15" ; + "http://informatics.jax.org" ; + rdfs:comment "ADD-IDO" , + "anatomy serum ; MA:0002502" , + "evidence ELISA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/0d8afaa7-84c0-430b-8cbd-cb46d388aa6a + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-17" ; + "PMID:15692051" ; + "2007-12-17" ; + "http://informatics.jax.org" ; + rdfs:comment "anatomy ileum ; MA:0000339" , + "evidence RT-PCR" , + "evidence bacterial counts in liver and spleen following instestinal infection with L. moncytogenes" , + "regulates_o_has_participant(EMAPA:32764 TS28)" . + + +### http://model.geneontology.org/MGI_MGI_2429397/0db73d90-9ace-4c4e-87a5-4b13ee6d0766 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-02-16" ; + "2009-02-16" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/0dba8c84-28fe-4738-b41f-42f52390d792 + rdf:type owl:NamedIndividual , + ; + "16218.75"^^xsd:string ; + "75"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0002-9796-7693" ; + "2023-09-28"^^xsd:string ; + "2013-10-30" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/0dea7c5b-b4ed-4884-9be3-227de3270673 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-02-16" ; + "PMID:18261938" ; + "2009-02-16" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence IB" . + + +### http://model.geneontology.org/MGI_MGI_2429397/0ea1953c-a835-4582-9c23-754cde23d734 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-02-17" ; + "2009-02-17" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/0edf6eeb-ad54-47e5-b730-efbde8a9260e + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-20" ; + "2007-12-20" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/0f6fd0fc-c1ce-4743-978d-b821b04f034e + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-20" ; + "PMID:15220916" ; + "2007-12-20" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" , + "has_participant(CL:0000235)" , + "macrophages from Nod2 KO mice transfected with wildtype mouse Nod2" . + + +### http://model.geneontology.org/MGI_MGI_2429397/0fc32c4a-0df4-4bbe-a665-cb92fee81fc5 + rdf:type owl:NamedIndividual , + ; + ; + "8934.375"^^xsd:string ; + "381.25"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2009-02-16" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + , + , + ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "2009-02-16" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0032760 MGI:MGI:3775161|PMID:18261938 ECO:0000314 2020-12-07 MGI GOREL:0001004(CL:0000235) creation-date=2009-02-16|modification-date=2020-12-07|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|contributor-id=https://orcid.org/0000-0001-9990-8331|contributor-id=https://orcid.org/0000-0001-7476-6306" , + "MGI:MGI:2429397 RO:0002264 GO:0032760 MGI:MGI:3775161|PMID:18261938 ECO:0000315 MGI:MGI:3529594 2020-12-07 MGI GOREL:0001004(CL:0000235) creation-date=2009-02-16|modification-date=2020-12-07|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|comment=evidence IB|contributor-id=https://orcid.org/0000-0001-9990-8331|contributor-id=https://orcid.org/0000-0001-7476-6306" , + "MGI:MGI:2429397 RO:0002264 GO:0032760 MGI:MGI:3775161|PMID:18261938 ECO:0000316 MGI:MGI:1341839 2020-12-07 MGI GOREL:0001004(CL:0000235) creation-date=2009-02-16|modification-date=2020-12-07|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|comment=evidence IB|contributor-id=https://orcid.org/0000-0001-7476-6306|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/00ae60d2-1e7d-4e49-aef3-3a541999c4e7 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:2680581" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2010-08-19" ; + "PMID:16949315" ; + "2010-08-19" ; + "http://informatics.jax.org" ; + rdfs:comment "anatomy colon ; MA:0000335" , + "evidence histology" , + "regulates_o_has_participant(EMAPA:18939 TS28)" . + + +### http://model.geneontology.org/MGI_MGI_2429397/00d5b5f2-32fa-4ab5-ba72-a60a785ee52f + rdf:type owl:NamedIndividual , + ; + ; + ; + "14643.75"^^xsd:string ; + "687.5"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2009-08-15" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-08-15" ; + "2009-08-15" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0032703 MGI:MGI:3839525|PMID:19139201 ECO:0000315 MGI:MGI:3529594 2009-08-15 MGI GOREL:0001004(EMAPA:35770) creation-date=2009-08-15|modification-date=2009-08-15|comment=anatomy serum ; MA:0002502|comment=evidence ELISA|comment=ADD-IDO|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-08-15" ; + "2009-08-15" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0032703 MGI:MGI:3839525|PMID:19139201 ECO:0000315 MGI:MGI:3529594 2009-08-15 MGI GOREL:0001004(EMAPA:35770) creation-date=2009-08-15|modification-date=2009-08-15|comment=anatomy serum ; MA:0002502|comment=evidence ELISA|comment=ADD-IDO|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/00240995-aea5-4ea9-82ec-ea07ef93f36b + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-08-15" ; + "2009-08-15" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/01c1bb9f-eeef-420d-9a44-cdcc33b2ff66 + rdf:type owl:NamedIndividual , + ; + ; + ; + "11296.875"^^xsd:string ; + "381.25"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" , + "https://orcid.org/0000-0003-3394-9805" ; + "2023-09-28"^^xsd:string ; + "2009-08-27" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + , + ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" , + "https://orcid.org/0000-0003-3394-9805" ; + "2014-05-14" ; + "2009-08-27" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0070431 MGI:MGI:2154458|GO_REF:0000008 ECO:0000266 UniProtKB:Q9HC29 2010-11-04 MGI creation-date=2009-08-27|modification-date=2010-11-04|comment=cell type permanent cell line ; CLO:0000019 293 [HEK293] ; ATCC:CRL-1573|comment=evidence NF-kappaB activation assay|comment=external ref PMID:12527755 IDA|comment=ADD-IDO|contributor-id=https://orcid.org/0000-0001-9990-8331|contributor-id=https://orcid.org/0000-0001-7476-6306" , + "MGI:MGI:2429397 RO:0002264 GO:0070431 MGI:MGI:5562512|PMID:23892723 ECO:0000315 2014-05-14 MGI creation-date=2014-05-14|modification-date=2014-05-14|contributor-id=https://orcid.org/0000-0003-3394-9805" + ] . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + , + ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" , + "https://orcid.org/0000-0003-3394-9805" ; + "2014-05-14" ; + "2009-08-27" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0070431 MGI:MGI:2154458|GO_REF:0000008 ECO:0000266 UniProtKB:Q9HC29 2010-11-04 MGI creation-date=2009-08-27|modification-date=2010-11-04|comment=cell type permanent cell line ; CLO:0000019 293 [HEK293] ; ATCC:CRL-1573|comment=evidence NF-kappaB activation assay|comment=external ref PMID:12527755 IDA|comment=ADD-IDO|contributor-id=https://orcid.org/0000-0001-9990-8331|contributor-id=https://orcid.org/0000-0001-7476-6306" , + "MGI:MGI:2429397 RO:0002264 GO:0070431 MGI:MGI:5562512|PMID:23892723 ECO:0000315 2014-05-14 MGI creation-date=2014-05-14|modification-date=2014-05-14|contributor-id=https://orcid.org/0000-0003-3394-9805" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/02b00eca-ee2f-4bf0-ba40-ddca11b9da24 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "PMID:15220916" ; + "2007-12-20" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" , + "macrophages from Nod2 KO mice transfected with wildtype mouse Nod2" . + + +### http://model.geneontology.org/MGI_MGI_2429397/02f88d77-bded-4880-91b5-9ff9a09a22cd + rdf:type owl:NamedIndividual , + ; + ; + "15825"^^xsd:string ; + "75"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-27"^^xsd:string ; + "2009-02-16" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-02-16" ; + "2009-02-16" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0046330 MGI:MGI:3775161|PMID:18261938 ECO:0000314 2009-02-16 MGI GOREL:0001004(CL:0000235) creation-date=2009-02-16|modification-date=2009-02-16|comment=cell type macrophage ; CL:0000235|comment=evidence IB|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/04a16bf4-63a9-419b-ba91-0f20703a8b54 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-08-15" ; + "PMID:19139201" ; + "2009-08-15" ; + "http://informatics.jax.org" ; + rdfs:comment "ADD-IDO" , + "anatomy blood ; MA:0000059" , + "cell type neutrophil ; CL:0000775" , + "evidence cell counts" . + + +### http://model.geneontology.org/MGI_MGI_2429397/05e5b8e0-bf66-44c8-ad28-9f97ef35573f + rdf:type owl:NamedIndividual , + ; + ; + ; + "8146.875"^^xsd:string ; + "381.25"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2009-08-27" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2010-11-04" ; + "2009-08-27" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0051092 MGI:MGI:2154458|GO_REF:0000008 ECO:0000266 UniProtKB:Q9HC29 2010-11-04 MGI creation-date=2009-08-27|modification-date=2010-11-04|comment=cell type permanent cell line ; CLO:0000019 293 [HEK293] ; ATCC:CRL-1573|comment=evidence NF-kappaB activation assay|comment=external ref PMID:12527755 IDA|comment=ADD-IDO|contributor-id=https://orcid.org/0000-0001-7476-6306|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2010-11-04" ; + "2009-08-27" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0051092 MGI:MGI:2154458|GO_REF:0000008 ECO:0000266 UniProtKB:Q9HC29 2010-11-04 MGI creation-date=2009-08-27|modification-date=2010-11-04|comment=cell type permanent cell line ; CLO:0000019 293 [HEK293] ; ATCC:CRL-1573|comment=evidence NF-kappaB activation assay|comment=external ref PMID:12527755 IDA|comment=ADD-IDO|contributor-id=https://orcid.org/0000-0001-7476-6306|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/05f1b008-99da-4339-9c7f-7daf1b644935 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:1341839" ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "PMID:18261938" ; + "2009-02-16" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" , + "evidence IB" . + + +### http://model.geneontology.org/MGI_MGI_2429397/05206c4b-e23a-4306-b884-9d5e1fced035 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-17" ; + "PMID:15692051" ; + "2007-12-17" ; + "http://informatics.jax.org" ; + rdfs:comment "evidence ELISA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/054c5865-b932-4fdc-a3de-6cc61a11934a + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "PMID:18261938" ; + "2009-02-16" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/06f9a85e-e438-4648-a04b-66fcac1ee77e + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-02-17" ; + "PMID:18261938" ; + "2009-02-17" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence IB" . + + +### http://model.geneontology.org/MGI_MGI_2429397/063a00ca-4ba3-4082-9a93-1cf20be0b7f5 + rdf:type owl:NamedIndividual , + ; + ; + ; + "12871.875"^^xsd:string ; + "381.25"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2007-12-14" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + , + , + , + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-20" ; + "2007-12-14" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0032495 MGI:MGI:2679172|PMID:14560001 ECO:0000315 MGI:MGI:2680581 2007-12-14 MGI BFO:0000066(CL:0000235) creation-date=2007-12-14|modification-date=2007-12-14|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|contributor-id=https://orcid.org/0000-0001-9990-8331" , + "MGI:MGI:2429397 RO:0002264 GO:0032495 MGI:MGI:3050756|PMID:15220916 ECO:0000314 2007-12-20 MGI BFO:0000066(CL:0000235) creation-date=2007-12-20|modification-date=2007-12-20|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|comment=macrophages from Nod2 KO mice transfected with wildtype mouse Nod2|contributor-id=https://orcid.org/0000-0001-9990-8331" , + "MGI:MGI:2429397 RO:0002264 GO:0032495 MGI:MGI:3050756|PMID:15220916 ECO:0000315 MGI:MGI:2680581 2007-12-20 MGI BFO:0000066(CL:0000235) creation-date=2007-12-20|modification-date=2007-12-20|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|contributor-id=https://orcid.org/0000-0001-9990-8331" , + "MGI:MGI:2429397 RO:0002264 GO:0032495 MGI:MGI:3528786|PMID:15692051 ECO:0000315 MGI:MGI:3529594 2007-12-17 MGI BFO:0000066(CL:0000235) creation-date=2007-12-17|modification-date=2007-12-17|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + , + , + , + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-20" ; + "2007-12-14" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0032495 MGI:MGI:2679172|PMID:14560001 ECO:0000315 MGI:MGI:2680581 2007-12-14 MGI BFO:0000066(CL:0000235) creation-date=2007-12-14|modification-date=2007-12-14|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|contributor-id=https://orcid.org/0000-0001-9990-8331" , + "MGI:MGI:2429397 RO:0002264 GO:0032495 MGI:MGI:3050756|PMID:15220916 ECO:0000314 2007-12-20 MGI BFO:0000066(CL:0000235) creation-date=2007-12-20|modification-date=2007-12-20|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|comment=macrophages from Nod2 KO mice transfected with wildtype mouse Nod2|contributor-id=https://orcid.org/0000-0001-9990-8331" , + "MGI:MGI:2429397 RO:0002264 GO:0032495 MGI:MGI:3050756|PMID:15220916 ECO:0000315 MGI:MGI:2680581 2007-12-20 MGI BFO:0000066(CL:0000235) creation-date=2007-12-20|modification-date=2007-12-20|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|contributor-id=https://orcid.org/0000-0001-9990-8331" , + "MGI:MGI:2429397 RO:0002264 GO:0032495 MGI:MGI:3528786|PMID:15692051 ECO:0000315 MGI:MGI:3529594 2007-12-17 MGI BFO:0000066(CL:0000235) creation-date=2007-12-17|modification-date=2007-12-17|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/07f37513-882d-420c-857e-2c5b31ebe742 + rdf:type owl:NamedIndividual , + ; + ; + ; + "862.5"^^xsd:string ; + "75"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0003-3394-9805" ; + "2023-09-28"^^xsd:string ; + "2007-04-10" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0003-3394-9805" ; + "2020-04-03" ; + "2007-04-10" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002327 GO:0005515 MGI:MGI:3697751|PMID:17187069 ECO:0000353 MGI:MGI:2685628 2020-04-03 MGI creation-date=2007-04-10|modification-date=2020-04-03|comment=cell type permanent cell line cell ; CLO:0000019 ATCC:TIB-71|comment=evidence inferred from protein binding ; ECO:0000024|contributor-id=https://orcid.org/0000-0001-7476-6306|contributor-id=https://orcid.org/0000-0003-3394-9805" + ] . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0003-3394-9805" ; + "2020-04-03" ; + "2007-04-10" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002327 GO:0005515 MGI:MGI:3697751|PMID:17187069 ECO:0000353 MGI:MGI:2685628 2020-04-03 MGI creation-date=2007-04-10|modification-date=2020-04-03|comment=cell type permanent cell line cell ; CLO:0000019 ATCC:TIB-71|comment=evidence inferred from protein binding ; ECO:0000024|contributor-id=https://orcid.org/0000-0001-7476-6306|contributor-id=https://orcid.org/0000-0003-3394-9805" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/071c6314-2310-4860-b264-0a169125fbd4 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-7476-6306" ; + "2015-10-23" ; + "PMID:22033934" ; + "2015-10-23" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/086eb73e-388e-4273-8942-626b328cfcb0 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-17" ; + "2007-12-17" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/09714b33-a67c-4cac-a330-8346384dd407 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-08-15" ; + "PMID:19139201" ; + "2009-08-15" ; + "http://informatics.jax.org" ; + rdfs:comment "ADD-IDO" , + "cell type neutrophil ; CL:0000775" , + "evidence phagocytosis assay" . + + +### http://model.geneontology.org/MGI_MGI_2429397/1bf06904-b4f0-49b3-babe-a4dcd56fcd64 + rdf:type owl:NamedIndividual , + ; + "15431.25"^^xsd:string ; + "75"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2010-08-19" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/1cbfc5f0-255e-48c6-af2c-5de76642bcd6 + rdf:type owl:NamedIndividual , + ; + "UniProtKB:Q9HC29" ; + "https://orcid.org/0000-0001-9990-8331" , + "https://orcid.org/0000-0003-3394-9805" ; + "2009-02-16" ; + "PMID:17187069" ; + "2007-04-06" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type 293 ; ATCC:0000013 ; CRL-1573" , + "evidence inferred from Western blot assay ; ECO:0000112" , + "evidence:immunoblot of MAPK phosphorylation" , + "target p38" . + + +### http://model.geneontology.org/MGI_MGI_2429397/1d082b1b-2250-4ef5-a6f3-cb8608ee0200 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-17" ; + "PMID:15692051" ; + "2007-12-17" ; + "http://informatics.jax.org" ; + rdfs:comment "anatomy ileum ; MA:0000339" , + "evidence RT-PCR" , + "evidence bacterial counts in liver and spleen following instestinal infection with L. moncytogenes" , + "has_participant(EMAPA:32764 TS28)" . + + +### http://model.geneontology.org/MGI_MGI_2429397/1da95327-c64d-4673-a8a5-ffcedb60728f + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0002-9796-7693" ; + "2013-10-30" ; + "PMID:18167348" ; + "2013-10-30" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type epithelial cell ; CL:0000066" . + + +### http://model.geneontology.org/MGI_MGI_2429397/101e7dc5-62c1-4bb9-8e64-2ab70e31480e + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-20" ; + "PMID:15220916" ; + "2007-12-20" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" , + "macrophages from Nod2 KO mice transfected with wildtype mouse Nod2" . + + +### http://model.geneontology.org/MGI_MGI_2429397/11aa6f01-4129-4472-8765-c20bb4492b5d + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-08-15" ; + "2009-08-15" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/114e0d91-9b78-4653-be0f-628c6167192a + rdf:type owl:NamedIndividual , + ; + ; + "15037.5"^^xsd:string ; + "75"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2007-12-17" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + , + , + , + ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "2007-12-17" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0032755 MGI:MGI:3528786|PMID:15692051 ECO:0000315 MGI:MGI:3529594 2020-12-07 MGI GOREL:0001004(CL:0000235) creation-date=2007-12-17|modification-date=2020-12-07|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|contributor-id=https://orcid.org/0000-0001-9990-8331|contributor-id=https://orcid.org/0000-0001-7476-6306" , + "MGI:MGI:2429397 RO:0002264 GO:0032755 MGI:MGI:3775161|PMID:18261938 ECO:0000314 2020-12-07 MGI GOREL:0001004(CL:0000235) creation-date=2009-02-16|modification-date=2020-12-07|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|contributor-id=https://orcid.org/0000-0001-9990-8331|contributor-id=https://orcid.org/0000-0001-7476-6306" , + "MGI:MGI:2429397 RO:0002264 GO:0032755 MGI:MGI:3775161|PMID:18261938 ECO:0000315 MGI:MGI:3529594 2020-12-07 MGI GOREL:0001004(CL:0000235) creation-date=2009-02-16|modification-date=2020-12-07|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|comment=evidence IB|contributor-id=https://orcid.org/0000-0001-7476-6306|contributor-id=https://orcid.org/0000-0001-9990-8331" , + "MGI:MGI:2429397 RO:0002264 GO:0032755 MGI:MGI:3775161|PMID:18261938 ECO:0000316 MGI:MGI:1341839 2020-12-07 MGI GOREL:0001004(CL:0000235) creation-date=2009-02-16|modification-date=2020-12-07|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|comment=evidence IB|contributor-id=https://orcid.org/0000-0001-9990-8331|contributor-id=https://orcid.org/0000-0001-7476-6306" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/11602227-09bd-4710-b5b3-f2764c626099 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-17" ; + "PMID:15692051" ; + "2007-12-17" ; + "http://informatics.jax.org" ; + rdfs:comment "evidence bacterial counts in liver and spleen" . + + +### http://model.geneontology.org/MGI_MGI_2429397/12e68c8d-94b9-4ecb-9fc5-df37bbe2d85b + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:2680581" ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "PMID:15220916" ; + "2007-12-20" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/1218f921-546b-415f-a3da-ee3112550c15 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-17" ; + "PMID:15692051" ; + "2007-12-17" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence IB" . + + +### http://model.geneontology.org/MGI_MGI_2429397/129d58c2-172e-4643-bdf6-81f124262a33 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-17" ; + "2007-12-17" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/13f9def8-65a2-4e01-b4d6-677efdd9eee7 + rdf:type owl:NamedIndividual , + ; + "14643.75"^^xsd:string ; + "75"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2010-08-19" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/13180d3c-9042-4feb-b9da-79401b20ca07 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-02-16" ; + "2009-02-16" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/14da94a5-f9aa-4f27-9e65-77232d25adbd + rdf:type owl:NamedIndividual , + ; + ; + ; + "9328.125"^^xsd:string ; + "381.25"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" , + "https://orcid.org/0000-0002-9796-7693" ; + "2023-09-28"^^xsd:string ; + "2007-12-20" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" , + "https://orcid.org/0000-0002-9796-7693" ; + "2021-03-23" ; + "2007-12-20" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0032088 MGI:MGI:3050756|PMID:15220916 ECO:0000315 MGI:MGI:2680581 2021-03-23 MGI BFO:0000066(CL:0000235) creation-date=2007-12-20|modification-date=2021-03-23|comment=cell type macrophage ; CL:0000235|comment=evidence NF-kappaB activation assay|contributor-id=https://orcid.org/0000-0001-7476-6306|contributor-id=https://orcid.org/0000-0002-9796-7693|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" , + "https://orcid.org/0000-0002-9796-7693" ; + "2021-03-23" ; + "2007-12-20" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0032088 MGI:MGI:3050756|PMID:15220916 ECO:0000315 MGI:MGI:2680581 2021-03-23 MGI BFO:0000066(CL:0000235) creation-date=2007-12-20|modification-date=2021-03-23|comment=cell type macrophage ; CL:0000235|comment=evidence NF-kappaB activation assay|contributor-id=https://orcid.org/0000-0001-7476-6306|contributor-id=https://orcid.org/0000-0002-9796-7693|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/141b5bb8-f5f9-4502-9999-614d93d7fe64 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:2680581" ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "PMID:15220916" ; + "2007-12-20" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/15b01e7a-957a-4118-91ff-a73988202ae4 + rdf:type owl:NamedIndividual , + ; + "14250"^^xsd:string ; + "75"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" , + "https://orcid.org/0000-0002-9796-7693" , + "https://orcid.org/0000-0003-3394-9805" ; + "2023-09-27"^^xsd:string ; + "2007-04-06" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/155c9911-1ec3-4798-81ae-48409d20acc7 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:2680581" ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" , + "https://orcid.org/0000-0002-9796-7693" ; + "2021-03-23" ; + "PMID:15220916" ; + "2005-11-11" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence NF-kappaB activation assay" . + + +### http://model.geneontology.org/MGI_MGI_2429397/16e29d6e-75e4-4700-8f56-b6b95e321b12 + rdf:type owl:NamedIndividual , + ; + ; + "13856.25"^^xsd:string ; + "75"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2007-12-17" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-17" ; + "2007-12-17" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0043330 MGI:MGI:3528786|PMID:15692051 ECO:0000315 MGI:MGI:3529594 2007-12-17 MGI BFO:0000066(CL:0000235) creation-date=2007-12-17|modification-date=2007-12-17|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/17b47ca3-7103-4700-934c-2158a9be7dd2 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2010-08-19" ; + "2010-08-19" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/17334bc7-92e8-4129-87f0-512619cf82e0 + rdf:type owl:NamedIndividual , + ; + "PR:Q3UZZ4" ; + "https://orcid.org/0000-0001-7476-6306" ; + "2013-08-02" ; + "PMID:20534456" ; + "2013-08-02" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/1795cb49-9384-4f8c-bd2f-3603711e6ec3 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-7476-6306" ; + "2015-10-23" ; + "2015-10-23" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/1824e0ad-df3a-423d-8cf3-a640e6b9ebf5 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-17" ; + "PMID:15692051" ; + "2007-12-17" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/185be6df-eaf9-4625-9123-cef0b3bc5128 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-08-15" ; + "PMID:19139201" ; + "2009-08-15" ; + "http://informatics.jax.org" ; + rdfs:comment "ADD-IDO" , + "cell type neutrophil ; CL:0000775" , + "evidence phagocytosis assay" . + + +### http://model.geneontology.org/MGI_MGI_2429397/2af56a05-02f2-4ab6-9fcf-0d2f5de2b187 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-02-17" ; + "PMID:18261938" ; + "2009-02-17" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence IB" . + + +### http://model.geneontology.org/MGI_MGI_2429397/2b44533e-0a5d-4015-b399-4cd839abddb5 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" , + "https://orcid.org/0000-0002-9796-7693" ; + "2021-03-23" ; + "2005-11-11" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/2bf11105-956b-4966-8133-811e8239f6d0 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "2007-12-14" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/2c0d80cf-6f0d-450f-8a7f-225132afce61 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-17" ; + "PMID:15692051" ; + "2007-12-17" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/2c6ad543-58cd-4d5e-9317-9f918b7d16a6 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2010-08-19" ; + "2010-08-19" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/2c86cdc2-f70a-4165-a5ec-0b250f0273dd + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:2680581" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2008-01-22" ; + "PMID:15220916" ; + "2008-01-22" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/2d356ef8-862b-4d1c-8b01-bf59f9fed47c + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "PMID:15220916" ; + "2007-12-20" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" , + "macrophages from Nod2 KO mice transfected with wildtype mouse Nod2" . + + +### http://model.geneontology.org/MGI_MGI_2429397/2e12b7a2-e2d8-4f17-a237-4b5319859dc6 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-7476-6306" ; + "2015-10-23" ; + "2015-10-23" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/2effb3c3-b748-4ef9-96d8-de3be2039113 + rdf:type owl:NamedIndividual , + ; + ; + "13462.5"^^xsd:string ; + "75"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2007-12-14" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + , + , + , + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-20" ; + "2007-12-14" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0032495 MGI:MGI:2679172|PMID:14560001 ECO:0000315 MGI:MGI:2680581 2007-12-14 MGI BFO:0000066(CL:0000235) creation-date=2007-12-14|modification-date=2007-12-14|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|contributor-id=https://orcid.org/0000-0001-9990-8331" , + "MGI:MGI:2429397 RO:0002264 GO:0032495 MGI:MGI:3050756|PMID:15220916 ECO:0000314 2007-12-20 MGI BFO:0000066(CL:0000235) creation-date=2007-12-20|modification-date=2007-12-20|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|comment=macrophages from Nod2 KO mice transfected with wildtype mouse Nod2|contributor-id=https://orcid.org/0000-0001-9990-8331" , + "MGI:MGI:2429397 RO:0002264 GO:0032495 MGI:MGI:3050756|PMID:15220916 ECO:0000315 MGI:MGI:2680581 2007-12-20 MGI BFO:0000066(CL:0000235) creation-date=2007-12-20|modification-date=2007-12-20|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|contributor-id=https://orcid.org/0000-0001-9990-8331" , + "MGI:MGI:2429397 RO:0002264 GO:0032495 MGI:MGI:3528786|PMID:15692051 ECO:0000315 MGI:MGI:3529594 2007-12-17 MGI BFO:0000066(CL:0000235) creation-date=2007-12-17|modification-date=2007-12-17|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/20cf885c-84dd-4143-8d71-a0e8705bf495 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-17" ; + "PMID:15692051" ; + "2007-12-17" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/201f7f46-c504-429d-a7a2-cf5bde47d1e2 + rdf:type owl:NamedIndividual , + ; + ; + ; + "18778.125"^^xsd:string ; + "381.25"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2010-08-19" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2010-08-19" ; + "2010-08-19" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0071224 MGI:MGI:3686795|PMID:16949315 ECO:0000315 MGI:MGI:2680581 2010-08-19 MGI creation-date=2010-08-19|modification-date=2010-08-19|comment=evidence ELISA|comment=CD11b-positive splenocytes used|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2010-08-19" ; + "2010-08-19" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0071224 MGI:MGI:3686795|PMID:16949315 ECO:0000315 MGI:MGI:2680581 2010-08-19 MGI creation-date=2010-08-19|modification-date=2010-08-19|comment=evidence ELISA|comment=CD11b-positive splenocytes used|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/202412c2-8e71-40f9-aa1e-2e478e3bf7d3 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:2680581" ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "PMID:14560001" ; + "2007-12-14" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/209e3dfb-71e1-4a00-8697-43dc0b82150f + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-08-15" ; + "PMID:19139201" ; + "2009-08-15" ; + "http://informatics.jax.org" ; + rdfs:comment "ADD-IDO" , + "anatomy serum ; MA:0002502" , + "evidence ELISA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/21d72da4-8864-4c43-8336-34c35470437f + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "PMID:15692051" ; + "2007-12-17" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/21d902a3-2030-42e8-b4ff-fa3dd195ac15 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-17" ; + "2007-12-17" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/21ea8130-a041-4727-a4a7-9d0a52d3b8e5 + rdf:type owl:NamedIndividual , + ; + ; + "13068.75"^^xsd:string ; + "75"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2007-12-20" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "2007-12-20" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0032689 MGI:MGI:3050756|PMID:15220916 ECO:0000315 MGI:MGI:2680581 2020-12-07 MGI GOREL:0001004(CL:0000235) creation-date=2007-12-20|modification-date=2020-12-07|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|contributor-id=https://orcid.org/0000-0001-9990-8331|contributor-id=https://orcid.org/0000-0001-7476-6306" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/2196d567-3b28-498d-a236-121aa34102cc + rdf:type owl:NamedIndividual , + ; + ; + ; + "665.625"^^xsd:string ; + "381.25"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2007-12-17" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-17" ; + "2007-12-17" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0002381 MGI:MGI:3528786|PMID:15692051 ECO:0000315 MGI:MGI:3529594 2007-12-17 MGI creation-date=2007-12-17|modification-date=2007-12-17|comment=evidence ELISA|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-17" ; + "2007-12-17" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0002381 MGI:MGI:3528786|PMID:15692051 ECO:0000315 MGI:MGI:3529594 2007-12-17 MGI creation-date=2007-12-17|modification-date=2007-12-17|comment=evidence ELISA|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/220e178d-c443-4a12-bb42-7c44d1789d3e + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:2680581" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2010-08-19" ; + "PMID:16949315" ; + "2010-08-19" ; + "http://informatics.jax.org" ; + rdfs:comment "anatomy colon ; MA:0000335" , + "evidence histology" , + "regulates_o_has_participant(EMAPA:18939 TS28)" . + + +### http://model.geneontology.org/MGI_MGI_2429397/23c524f1-184a-41c2-a918-16ac4a47fd0f + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:2680581" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2008-01-22" ; + "PMID:15220916" ; + "2008-01-22" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/234245df-ba4d-4a32-bfe3-cc65b1c54ac0 + rdf:type owl:NamedIndividual , + ; + "12675"^^xsd:string ; + "75"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" , + "https://orcid.org/0000-0003-3394-9805" ; + "2023-09-27"^^xsd:string ; + "2007-04-06" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/26c5451e-1670-4da9-8fbc-388083c43d1c + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-08-15" ; + "2009-08-15" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/26f3a117-d795-4572-b047-d90f6e9865f1 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-17" ; + "PMID:15692051" ; + "2007-12-17" ; + "http://informatics.jax.org" ; + rdfs:comment "evidence ELISA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/261dbd4f-263e-402a-908f-ef811551421d + rdf:type owl:NamedIndividual , + ; + ; + ; + "13462.5"^^xsd:string ; + "687.5"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2007-12-17" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-17" ; + "2007-12-17" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0043410 MGI:MGI:3528786|PMID:15692051 ECO:0000315 MGI:MGI:3529594 2007-12-17 MGI GOREL:0001004(CL:0000235) creation-date=2007-12-17|modification-date=2007-12-17|comment=cell type macrophage ; CL:0000235|comment=evidence IB|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-17" ; + "2007-12-17" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0043410 MGI:MGI:3528786|PMID:15692051 ECO:0000315 MGI:MGI:3529594 2007-12-17 MGI GOREL:0001004(CL:0000235) creation-date=2007-12-17|modification-date=2007-12-17|comment=cell type macrophage ; CL:0000235|comment=evidence IB|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/267547c6-a382-4094-a733-e616028ac020 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-02-16" ; + "PMID:18261938" ; + "2009-02-16" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" , + "evidence IB" , + "has_participant(CL:0000235)" . + + +### http://model.geneontology.org/MGI_MGI_2429397/27fae758-c5cc-442e-8e57-82b3f0428682 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-17" ; + "2007-12-17" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/27748a8e-acb8-45b3-86b1-d04b6be0919c + rdf:type owl:NamedIndividual , + ; + ; + ; + "1453.125"^^xsd:string ; + "381.25"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2007-12-17" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-17" ; + "2007-12-17" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0002227 MGI:MGI:3528786|PMID:15692051 ECO:0000315 MGI:MGI:3529594 2007-12-17 MGI creation-date=2007-12-17|modification-date=2007-12-17|comment=anatomy ileum ; MA:0000339|comment=evidence bacterial counts in liver and spleen following instestinal infection with L. moncytogenes|comment=evidence RT-PCR|comment=has_participant(EMAPA:32764 TS28)|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-17" ; + "2007-12-17" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0002227 MGI:MGI:3528786|PMID:15692051 ECO:0000315 MGI:MGI:3529594 2007-12-17 MGI creation-date=2007-12-17|modification-date=2007-12-17|comment=anatomy ileum ; MA:0000339|comment=evidence bacterial counts in liver and spleen following instestinal infection with L. moncytogenes|comment=evidence RT-PCR|comment=has_participant(EMAPA:32764 TS28)|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/283d602a-a2cf-4b67-988c-e80229e27a9c + rdf:type owl:NamedIndividual , + ; + ; + "12281.25"^^xsd:string ; + "75"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2007-12-20" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "2007-12-20" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0032701 MGI:MGI:3050756|PMID:15220916 ECO:0000315 MGI:MGI:2680581 2020-12-07 MGI GOREL:0001004(CL:0000235) creation-date=2007-12-20|modification-date=2020-12-07|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|contributor-id=https://orcid.org/0000-0001-9990-8331|contributor-id=https://orcid.org/0000-0001-7476-6306" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/296c9c3e-0539-4c8b-9cc8-6789f14907aa + rdf:type owl:NamedIndividual , + ; + ; + "12478.125"^^xsd:string ; + "381.25"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2007-12-20" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "2007-12-20" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0032689 MGI:MGI:3050756|PMID:15220916 ECO:0000315 MGI:MGI:2680581 2020-12-07 MGI GOREL:0001004(CL:0000235) creation-date=2007-12-20|modification-date=2020-12-07|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|contributor-id=https://orcid.org/0000-0001-9990-8331|contributor-id=https://orcid.org/0000-0001-7476-6306" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/3ac25069-98e7-44f4-a55f-9d332caa8a74 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-08-15" ; + "PMID:19139201" ; + "2009-08-15" ; + "http://informatics.jax.org" ; + rdfs:comment "ADD-IDO" , + "anatomy serum ; MA:0002502" , + "evidence ELISA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/3b1ef2d7-2e8a-4cb3-ac71-8b50a422fe9e + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-08-15" ; + "2009-08-15" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/3b8a8165-0e69-453d-9ce1-2b752a887940 + rdf:type owl:NamedIndividual , + ; + "11887.5"^^xsd:string ; + "75"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" , + "https://orcid.org/0000-0003-3394-9805" ; + "2023-09-28"^^xsd:string ; + "2009-08-27" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/3c1bf603-c723-4e19-b849-0c353feec58c + rdf:type owl:NamedIndividual , + ; + "UniProtKB:Q9HC29" ; + "https://orcid.org/0000-0001-9990-8331" , + "https://orcid.org/0000-0003-3394-9805" ; + "2009-02-16" ; + "PMID:17187069" ; + "2007-04-06" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type 293 ; ATCC:0000013 ; CRL-1573" , + "evidence inferred from Western blot assay ; ECO:0000112" , + "evidence:immunoblot of MAPK phosphorylation" , + "target JNK1 ; JNK2" . + + +### http://model.geneontology.org/MGI_MGI_2429397/3c498d34-84c8-4dfd-afce-9d69adcc8563 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-02-17" ; + "PMID:18261938" ; + "2009-02-17" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence IB" . + + +### http://model.geneontology.org/MGI_MGI_2429397/3c4c13b4-c516-4558-95de-912a51c4282a + rdf:type owl:NamedIndividual , + ; + ; + "11493.75"^^xsd:string ; + "75"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2007-12-17" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-17" ; + "2007-12-17" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0006965 MGI:MGI:3528786|PMID:15692051 ECO:0000315 MGI:MGI:3529594 2007-12-17 MGI GOREL:0001004(EMAPA:32764) creation-date=2007-12-17|modification-date=2007-12-17|comment=anatomy ileum ; MA:0000339|comment=evidence RT-PCR|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/3dbdfa28-4305-4351-957e-d97e3dba2a06 + rdf:type owl:NamedIndividual , + ; + ; + "6965.625"^^xsd:string ; + "381.25"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2009-08-15" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-08-15" ; + "2009-08-15" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0032689 MGI:MGI:3839525|PMID:19139201 ECO:0000315 MGI:MGI:3529594 2009-08-15 MGI GOREL:0001004(EMAPA:35770) creation-date=2009-08-15|modification-date=2009-08-15|comment=anatomy serum ; MA:0002502|comment=evidence ELISA|comment=ADD-IDO|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/3dfc3c23-0de2-4781-aa4d-339b7068dbbf + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-17" ; + "2007-12-17" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/3e346ecd-1c29-4731-aba5-f744207925dd + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-17" ; + "PMID:15692051" ; + "2007-12-17" ; + "http://informatics.jax.org" ; + rdfs:comment "evidence ELISA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/3e6cbabb-61fc-4111-8713-52a2d2e1f60d + rdf:type owl:NamedIndividual , + ; + ; + "11100"^^xsd:string ; + "75"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306" ; + "2023-09-27"^^xsd:string ; + "2015-10-23" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-7476-6306" ; + "2015-10-23" ; + "2015-10-23" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:1904417 MGI:MGI:5299952|PMID:22033934 ECO:0000315 MGI:MGI:3529594 2015-10-23 MGI BFO:0000066(CL:0000235),GOREL:0001004(CL:0000235)|BFO:0000066(CL:0000451),GOREL:0001004(CL:0000451) creation-date=2015-10-23|modification-date=2015-10-23|contributor-id=https://orcid.org/0000-0001-7476-6306" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/3e997203-4d4f-4a7c-a59e-93ea265bbe24 + rdf:type owl:NamedIndividual , + ; + "10706.25"^^xsd:string ; + "75"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2007-12-20" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/3eba2d99-baf7-471d-afbb-74d11e1668b5 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:2680581" ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" , + "https://orcid.org/0000-0002-9796-7693" ; + "2021-03-23" ; + "PMID:15220916" ; + "2005-11-11" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence NF-kappaB activation assay" . + + +### http://model.geneontology.org/MGI_MGI_2429397/3fd983fe-27b7-42ca-8476-62588f60add8 + rdf:type owl:NamedIndividual , + ; + ; + ; + "13265.625"^^xsd:string ; + "381.25"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2007-12-17" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-17" ; + "2007-12-17" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0043330 MGI:MGI:3528786|PMID:15692051 ECO:0000315 MGI:MGI:3529594 2007-12-17 MGI BFO:0000066(CL:0000235) creation-date=2007-12-17|modification-date=2007-12-17|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-17" ; + "2007-12-17" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0043330 MGI:MGI:3528786|PMID:15692051 ECO:0000315 MGI:MGI:3529594 2007-12-17 MGI BFO:0000066(CL:0000235) creation-date=2007-12-17|modification-date=2007-12-17|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/300438cc-bca2-4b69-b82c-788496edfded + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-7476-6306" ; + "2015-10-23" ; + "PMID:22033934" ; + "2015-10-23" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/303abbb3-72ad-442a-9bd4-a798f105c1ed + rdf:type owl:NamedIndividual , + ; + ; + ; + "1059.375"^^xsd:string ; + "381.25"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" , + "https://orcid.org/0000-0002-9796-7693" ; + "2023-09-28"^^xsd:string ; + "2005-11-11" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" , + "https://orcid.org/0000-0002-9796-7693" ; + "2021-03-23" ; + "2005-11-11" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0051092 MGI:MGI:3050756|PMID:15220916 ECO:0000315 MGI:MGI:2680581 2021-03-23 MGI BFO:0000066(CL:0000235) creation-date=2005-11-11|modification-date=2021-03-23|comment=cell type macrophage ; CL:0000235|comment=evidence NF-kappaB activation assay|contributor-id=https://orcid.org/0000-0001-7476-6306|contributor-id=https://orcid.org/0000-0002-9796-7693|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" , + "https://orcid.org/0000-0002-9796-7693" ; + "2021-03-23" ; + "2005-11-11" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0051092 MGI:MGI:3050756|PMID:15220916 ECO:0000315 MGI:MGI:2680581 2021-03-23 MGI BFO:0000066(CL:0000235) creation-date=2005-11-11|modification-date=2021-03-23|comment=cell type macrophage ; CL:0000235|comment=evidence NF-kappaB activation assay|contributor-id=https://orcid.org/0000-0001-7476-6306|contributor-id=https://orcid.org/0000-0002-9796-7693|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/306e0475-a21d-4ad8-8fec-79a21eb5a178 + rdf:type owl:NamedIndividual , + ; + "10312.5"^^xsd:string ; + "75"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2009-08-27" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/31aa796f-a146-46a4-9e12-7af321d1027c + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-02-16" ; + "2009-02-16" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/31c898e5-8f8b-4edc-8ea0-8b9897cb0fa3 + rdf:type owl:NamedIndividual , + ; + ; + "9742.75"^^xsd:string ; + "33"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" , + "https://orcid.org/0000-0002-9796-7693" ; + "2023-09-28"^^xsd:string ; + "2007-12-20" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" , + "https://orcid.org/0000-0002-9796-7693" ; + "2021-03-23" ; + "2007-12-20" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0032088 MGI:MGI:3050756|PMID:15220916 ECO:0000315 MGI:MGI:2680581 2021-03-23 MGI BFO:0000066(CL:0000235) creation-date=2007-12-20|modification-date=2021-03-23|comment=cell type macrophage ; CL:0000235|comment=evidence NF-kappaB activation assay|contributor-id=https://orcid.org/0000-0001-7476-6306|contributor-id=https://orcid.org/0000-0002-9796-7693|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/3133a64f-a8d5-4b0f-bb57-92e3ad0a33d3 + rdf:type owl:NamedIndividual , + ; + "UniProtKB:Q9HC29" ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2010-11-04" ; + "GO_REF:0000008" ; + "2009-08-27" ; + "http://informatics.jax.org" ; + rdfs:comment "ADD-IDO" , + "cell type permanent cell line ; CLO:0000019 293 [HEK293] ; ATCC:CRL-1573" , + "evidence NF-kappaB activation assay" , + "external ref PMID:12527755 IDA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/327dc29e-9b74-4460-be58-3229e0383344 + rdf:type owl:NamedIndividual , + ; + ; + "9525"^^xsd:string ; + "75"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-27"^^xsd:string ; + "2009-02-16" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + , + , + ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "2009-02-16" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0032760 MGI:MGI:3775161|PMID:18261938 ECO:0000314 2020-12-07 MGI GOREL:0001004(CL:0000235) creation-date=2009-02-16|modification-date=2020-12-07|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|contributor-id=https://orcid.org/0000-0001-9990-8331|contributor-id=https://orcid.org/0000-0001-7476-6306" , + "MGI:MGI:2429397 RO:0002264 GO:0032760 MGI:MGI:3775161|PMID:18261938 ECO:0000315 MGI:MGI:3529594 2020-12-07 MGI GOREL:0001004(CL:0000235) creation-date=2009-02-16|modification-date=2020-12-07|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|comment=evidence IB|contributor-id=https://orcid.org/0000-0001-9990-8331|contributor-id=https://orcid.org/0000-0001-7476-6306" , + "MGI:MGI:2429397 RO:0002264 GO:0032760 MGI:MGI:3775161|PMID:18261938 ECO:0000316 MGI:MGI:1341839 2020-12-07 MGI GOREL:0001004(CL:0000235) creation-date=2009-02-16|modification-date=2020-12-07|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|comment=evidence IB|contributor-id=https://orcid.org/0000-0001-7476-6306|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/3367795c-8b20-4c25-963a-1fa505c01204 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-02-16" ; + "PMID:18261938" ; + "2009-02-16" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence IB" . + + +### http://model.geneontology.org/MGI_MGI_2429397/35cad324-8b08-4213-a701-b78c4f545a88 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-7476-6306" ; + "2013-12-30" ; + "PMID:19218085" ; + "2013-12-30" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/352b8237-92ef-4110-b3ac-f472d0a458cb + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "PMID:18261938" ; + "2009-02-16" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" , + "evidence IB" . + + +### http://model.geneontology.org/MGI_MGI_2429397/355af9e0-2483-4197-b5cf-2fc1e850d2e5 + rdf:type owl:NamedIndividual , + ; + ; + "14446.875"^^xsd:string ; + "381.25"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2007-12-17" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + , + , + , + ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "2007-12-17" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0032755 MGI:MGI:3528786|PMID:15692051 ECO:0000315 MGI:MGI:3529594 2020-12-07 MGI GOREL:0001004(CL:0000235) creation-date=2007-12-17|modification-date=2020-12-07|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|contributor-id=https://orcid.org/0000-0001-9990-8331|contributor-id=https://orcid.org/0000-0001-7476-6306" , + "MGI:MGI:2429397 RO:0002264 GO:0032755 MGI:MGI:3775161|PMID:18261938 ECO:0000314 2020-12-07 MGI GOREL:0001004(CL:0000235) creation-date=2009-02-16|modification-date=2020-12-07|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|contributor-id=https://orcid.org/0000-0001-9990-8331|contributor-id=https://orcid.org/0000-0001-7476-6306" , + "MGI:MGI:2429397 RO:0002264 GO:0032755 MGI:MGI:3775161|PMID:18261938 ECO:0000315 MGI:MGI:3529594 2020-12-07 MGI GOREL:0001004(CL:0000235) creation-date=2009-02-16|modification-date=2020-12-07|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|comment=evidence IB|contributor-id=https://orcid.org/0000-0001-7476-6306|contributor-id=https://orcid.org/0000-0001-9990-8331" , + "MGI:MGI:2429397 RO:0002264 GO:0032755 MGI:MGI:3775161|PMID:18261938 ECO:0000316 MGI:MGI:1341839 2020-12-07 MGI GOREL:0001004(CL:0000235) creation-date=2009-02-16|modification-date=2020-12-07|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|comment=evidence IB|contributor-id=https://orcid.org/0000-0001-9990-8331|contributor-id=https://orcid.org/0000-0001-7476-6306" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/3571436a-09f8-4c40-a689-a4b476798fdc + rdf:type owl:NamedIndividual , + ; + ; + ; + "15037.5"^^xsd:string ; + "687.5"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2009-08-15" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-08-15" ; + "2009-08-15" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0032720 MGI:MGI:3839525|PMID:19139201 ECO:0000315 MGI:MGI:3529594 2009-08-15 MGI GOREL:0001004(EMAPA:35770) creation-date=2009-08-15|modification-date=2009-08-15|comment=anatomy serum ; MA:0002502|comment=evidence ELISA|comment=ADD-IDO|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-08-15" ; + "2009-08-15" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0032720 MGI:MGI:3839525|PMID:19139201 ECO:0000315 MGI:MGI:3529594 2009-08-15 MGI GOREL:0001004(EMAPA:35770) creation-date=2009-08-15|modification-date=2009-08-15|comment=anatomy serum ; MA:0002502|comment=evidence ELISA|comment=ADD-IDO|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/36c03d5e-8d9b-40f3-bbd8-496e97aaf0ba + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-7476-6306" ; + "2015-10-23" ; + "PMID:22033934" ; + "2015-10-23" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/3616508d-d5d2-455c-a58b-03c8704061eb + rdf:type owl:NamedIndividual , + ; + ; + ; + "2240.625"^^xsd:string ; + "381.25"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306" ; + "2023-09-28"^^xsd:string ; + "2015-10-23" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-7476-6306" ; + "2015-10-23" ; + "2015-10-23" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:1904417 MGI:MGI:5299952|PMID:22033934 ECO:0000315 MGI:MGI:3529594 2015-10-23 MGI BFO:0000066(CL:0000235),GOREL:0001004(CL:0000235)|BFO:0000066(CL:0000451),GOREL:0001004(CL:0000451) creation-date=2015-10-23|modification-date=2015-10-23|contributor-id=https://orcid.org/0000-0001-7476-6306" + ] . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-7476-6306" ; + "2015-10-23" ; + "2015-10-23" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:1904417 MGI:MGI:5299952|PMID:22033934 ECO:0000315 MGI:MGI:3529594 2015-10-23 MGI BFO:0000066(CL:0000235),GOREL:0001004(CL:0000235)|BFO:0000066(CL:0000451),GOREL:0001004(CL:0000451) creation-date=2015-10-23|modification-date=2015-10-23|contributor-id=https://orcid.org/0000-0001-7476-6306" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/4adf2f86-0d9b-4a0e-b4ef-0b8c55aece5f + rdf:type owl:NamedIndividual , + ; + ; + "9131.25"^^xsd:string ; + "75"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2007-12-20" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + , + ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "2007-12-20" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0032695 MGI:MGI:3050756|PMID:15220916 ECO:0000314 2020-12-07 MGI GOREL:0001004(CL:0000235) creation-date=2007-12-20|modification-date=2020-12-07|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|comment=macrophages from Nod2 KO mice transfected with wildtype mouse Nod2|contributor-id=https://orcid.org/0000-0001-9990-8331|contributor-id=https://orcid.org/0000-0001-7476-6306" , + "MGI:MGI:2429397 RO:0002264 GO:0032695 MGI:MGI:3050756|PMID:15220916 ECO:0000315 MGI:MGI:2680581 2020-12-07 MGI GOREL:0001004(CL:0000235) creation-date=2007-12-20|modification-date=2020-12-07|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|contributor-id=https://orcid.org/0000-0001-9990-8331|contributor-id=https://orcid.org/0000-0001-7476-6306" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/4aed755f-f9b4-42be-a5ee-a940300f79e2 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-7476-6306" ; + "2015-10-23" ; + "PMID:22033934" ; + "2015-10-23" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/4af02553-bd25-489b-99f4-97205c96b75d + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0002-9796-7693" ; + "2013-10-30" ; + "2013-10-30" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/4b31ff97-240a-4791-bd75-e929f9320042 + rdf:type owl:NamedIndividual , + ; + "8737.5"^^xsd:string ; + "75"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2009-08-27" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/4d163011-9062-428a-9bf0-0674b4edd927 + rdf:type owl:NamedIndividual , + ; + "8343.75"^^xsd:string ; + "75"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306" ; + "2023-09-28"^^xsd:string ; + "2013-12-30" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/4d31d289-80a2-45d2-9370-73743352d814 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "2009-02-16" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/4d55fb7b-8b8a-4fcc-975f-10762fea00c3 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:2680581" ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "PMID:15220916" ; + "2007-12-20" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/4d732e76-8145-44b9-9791-57ba5ac4f872 + rdf:type owl:NamedIndividual , + ; + ; + ; + "468.75"^^xsd:string ; + "75"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0002-9796-7693" ; + "2023-09-28"^^xsd:string ; + "2013-10-30" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0002-9796-7693" ; + "2013-10-30" ; + "2013-10-30" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002327 GO:0032500 MGI:MGI:3775881|PMID:18167348 ECO:0000314 2013-10-30 MGI BFO:0000066(CL:0000066) creation-date=2013-10-30|modification-date=2013-10-30|comment=cell type epithelial cell ; CL:0000066|contributor-id=https://orcid.org/0000-0002-9796-7693" + ] . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0002-9796-7693" ; + "2013-10-30" ; + "2013-10-30" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002327 GO:0032500 MGI:MGI:3775881|PMID:18167348 ECO:0000314 2013-10-30 MGI BFO:0000066(CL:0000066) creation-date=2013-10-30|modification-date=2013-10-30|comment=cell type epithelial cell ; CL:0000066|contributor-id=https://orcid.org/0000-0002-9796-7693" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/4f6d22f7-cf5c-41c7-8587-60e351e2154b + rdf:type owl:NamedIndividual , + ; + ; + ; + "16415.625"^^xsd:string ; + "381.25"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2007-12-17" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-17" ; + "2007-12-17" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0045089 MGI:MGI:3528786|PMID:15692051 ECO:0000315 MGI:MGI:3529594 2007-12-17 MGI creation-date=2007-12-17|modification-date=2007-12-17|comment=anatomy ileum ; MA:0000339|comment=evidence bacterial counts in liver and spleen following instestinal infection with L. moncytogenes|comment=evidence RT-PCR|comment=regulates_o_has_participant(EMAPA:32764 TS28)|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-17" ; + "2007-12-17" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0045089 MGI:MGI:3528786|PMID:15692051 ECO:0000315 MGI:MGI:3529594 2007-12-17 MGI creation-date=2007-12-17|modification-date=2007-12-17|comment=anatomy ileum ; MA:0000339|comment=evidence bacterial counts in liver and spleen following instestinal infection with L. moncytogenes|comment=evidence RT-PCR|comment=regulates_o_has_participant(EMAPA:32764 TS28)|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/4fc9a51d-efec-4a89-acbc-eae59e4f9130 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2010-02-09" ; + "2009-08-15" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/40fc72fb-347d-4c23-b98d-304ebdf505a7 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-17" ; + "2007-12-17" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/4039850b-35af-49c5-9348-ed6ed60e811d + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:2680581" ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "PMID:15220916" ; + "2007-12-20" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/405bc8af-8990-4cb9-8300-44139b625b4e + rdf:type owl:NamedIndividual , + ; + ; + ; + "18645"^^xsd:string ; + "1133.5"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2009-02-16" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-7476-6306" ; + "2023-09-28"^^xsd:string ; + "http://informatics.jax.org" + ] . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-02-16" ; + "2009-02-16" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0043123 MGI:MGI:3775161|PMID:18261938 ECO:0000314 2009-02-16 MGI GOREL:0001004(CL:0000235) creation-date=2009-02-16|modification-date=2009-02-16|comment=cell type macrophage ; CL:0000235|comment=evidence IB|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/41d727dc-c00c-4579-a7b7-49f8a8474639 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-20" ; + "PMID:15220916" ; + "2007-12-20" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" , + "macrophages from Nod2 KO mice transfected with wildtype mouse Nod2" . + + +### http://model.geneontology.org/MGI_MGI_2429397/41dc1d9b-4935-44f6-b3e9-8fdb92d9c99c + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "2007-12-20" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/410087ea-6ddd-47c3-8a45-9c3c284de540 + rdf:type owl:NamedIndividual , + ; + ; + ; + "3815.625"^^xsd:string ; + "381.25"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2007-12-17" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-17" ; + "2007-12-17" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0002925 MGI:MGI:3528786|PMID:15692051 ECO:0000315 MGI:MGI:3529594 2007-12-17 MGI creation-date=2007-12-17|modification-date=2007-12-17|comment=evidence ELISA|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-17" ; + "2007-12-17" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0002925 MGI:MGI:3528786|PMID:15692051 ECO:0000315 MGI:MGI:3529594 2007-12-17 MGI creation-date=2007-12-17|modification-date=2007-12-17|comment=evidence ELISA|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/418ffabf-5d1d-4010-a71a-7476f90ebc37 + rdf:type owl:NamedIndividual , + ; + "UniProtKB:Q9HC29" ; + "https://orcid.org/0000-0001-9990-8331" , + "https://orcid.org/0000-0003-3394-9805" ; + "2009-02-16" ; + "PMID:17187069" ; + "2007-04-06" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type 293 ; ATCC:0000013 ; CRL-1573" , + "evidence inferred from Western blot assay ; ECO:0000112" , + "evidence:immunoblot of MAPK phosphorylation" , + "target p38" . + + +### http://model.geneontology.org/MGI_MGI_2429397/428d39dd-e6b3-4d5a-a7e4-a22848585d72 + rdf:type owl:NamedIndividual , + ; + ; + "7950"^^xsd:string ; + "75"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" , + "https://orcid.org/0000-0002-9796-7693" ; + "2023-09-27"^^xsd:string ; + "2009-08-15" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" , + "https://orcid.org/0000-0002-9796-7693" ; + "2021-04-13" ; + "2009-08-15" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0050830 MGI:MGI:3839525|PMID:19139201 ECO:0000315 MGI:MGI:3529594 2021-04-13 MGI RO:0002233(taxon:196620)|RO:0002233(taxon:282459) creation-date=2009-08-15|modification-date=2021-04-13|comment=evidence survival curves|comment=ADD-IDO Staphylococcus aureus subsp. aureus MW2 ; taxon:196620 Staphylococcus aureus subsp. aureus MSSA476 ; taxon:282459|contributor-id=https://orcid.org/0000-0002-9796-7693|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/434ffc93-3fb3-4026-8df9-7bf51aa3c3e9 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2010-11-04" ; + "2009-08-27" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/437cc84f-22f8-47bb-aa36-e9bc2a8fc27e + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-17" ; + "PMID:15692051" ; + "2007-12-17" ; + "http://informatics.jax.org" ; + rdfs:comment "anatomy ileum ; MA:0000339" , + "evidence RT-PCR" . + + +### http://model.geneontology.org/MGI_MGI_2429397/439247dc-a69d-485c-b432-82e59405aef1 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:2680581" ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "PMID:15220916" ; + "2007-12-20" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/44a0d3c9-cd0c-4812-bfed-fa47228a3939 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-02-16" ; + "2009-02-16" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/4428087b-5a70-42cc-a280-a48ae568bef9 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-20" ; + "2007-12-14" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/443a0c7a-32c2-4aa7-b88c-2aa2e9cbdf4a + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:2680581" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2010-08-19" ; + "PMID:16949315" ; + "2010-08-19" ; + "http://informatics.jax.org" ; + rdfs:comment "anatomy colon ; MA:0000335" , + "evidence histology" , + "regulates_o_has_participant(EMAPA:18939 TS28)" . + + +### http://model.geneontology.org/MGI_MGI_2429397/44305582-ba42-4d60-9f23-321253ca035d + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-9990-8331" , + "https://orcid.org/0000-0002-9796-7693" ; + "2021-04-13" ; + "2009-08-15" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/447b2786-a83f-42f1-a334-b8af985ee95b + rdf:type owl:NamedIndividual , + ; + ; + ; + "13659.375"^^xsd:string ; + "381.25"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" , + "https://orcid.org/0000-0002-9796-7693" , + "https://orcid.org/0000-0003-3394-9805" ; + "2023-09-28"^^xsd:string ; + "2007-04-06" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + , + ; + "https://orcid.org/0000-0001-9990-8331" , + "https://orcid.org/0000-0002-9796-7693" , + "https://orcid.org/0000-0003-3394-9805" ; + "2009-02-16" ; + "2007-04-06" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0032760 MGI:MGI:3050756|PMID:15220916 ECO:0000315 MGI:MGI:2680581 2008-02-15 MGI creation-date=2007-12-20|modification-date=2008-02-15|comment=evidence ELISA|comment=splenocytes used|contributor-id=https://orcid.org/0000-0001-9990-8331|contributor-id=https://orcid.org/0000-0002-9796-7693" , + "MGI:MGI:2429397 RO:0002264 GO:0032760 MGI:MGI:3697751|PMID:17187069 ECO:0000266 UniProtKB:Q9HC29 2009-02-16 MGI creation-date=2007-04-06|modification-date=2009-02-16|comment=cell type 293 ; ATCC:0000013 ; CRL-1573|comment=evidence inferred from reporter gene assay ; ECO:0000049|comment=target p38|comment=evidence:luciferase transcriptional reporter assay|contributor-id=https://orcid.org/0000-0001-9990-8331|contributor-id=https://orcid.org/0000-0003-3394-9805" + ] . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + , + ; + "https://orcid.org/0000-0001-9990-8331" , + "https://orcid.org/0000-0002-9796-7693" , + "https://orcid.org/0000-0003-3394-9805" ; + "2009-02-16" ; + "2007-04-06" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0032760 MGI:MGI:3050756|PMID:15220916 ECO:0000315 MGI:MGI:2680581 2008-02-15 MGI creation-date=2007-12-20|modification-date=2008-02-15|comment=evidence ELISA|comment=splenocytes used|contributor-id=https://orcid.org/0000-0001-9990-8331|contributor-id=https://orcid.org/0000-0002-9796-7693" , + "MGI:MGI:2429397 RO:0002264 GO:0032760 MGI:MGI:3697751|PMID:17187069 ECO:0000266 UniProtKB:Q9HC29 2009-02-16 MGI creation-date=2007-04-06|modification-date=2009-02-16|comment=cell type 293 ; ATCC:0000013 ; CRL-1573|comment=evidence inferred from reporter gene assay ; ECO:0000049|comment=target p38|comment=evidence:luciferase transcriptional reporter assay|contributor-id=https://orcid.org/0000-0001-9990-8331|contributor-id=https://orcid.org/0000-0003-3394-9805" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/450eb2b4-485c-4ddb-826a-a06fd908429b + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-9990-8331" , + "https://orcid.org/0000-0002-9796-7693" , + "https://orcid.org/0000-0003-3394-9805" ; + "2009-02-16" ; + "2007-04-06" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/458b5320-d36c-4b55-8464-8da2623caba6 + rdf:type owl:NamedIndividual , + ; + ; + ; + "17596.875"^^xsd:string ; + "381.25"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" , + "https://orcid.org/0000-0002-9796-7693" ; + "2023-09-28"^^xsd:string ; + "2009-08-15" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" , + "https://orcid.org/0000-0002-9796-7693" ; + "2021-04-13" ; + "2009-08-15" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0050830 MGI:MGI:3839525|PMID:19139201 ECO:0000315 MGI:MGI:3529594 2021-04-13 MGI RO:0002233(taxon:196620)|RO:0002233(taxon:282459) creation-date=2009-08-15|modification-date=2021-04-13|comment=evidence survival curves|comment=ADD-IDO Staphylococcus aureus subsp. aureus MW2 ; taxon:196620 Staphylococcus aureus subsp. aureus MSSA476 ; taxon:282459|contributor-id=https://orcid.org/0000-0002-9796-7693|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" , + "https://orcid.org/0000-0002-9796-7693" ; + "2021-04-13" ; + "2009-08-15" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0050830 MGI:MGI:3839525|PMID:19139201 ECO:0000315 MGI:MGI:3529594 2021-04-13 MGI RO:0002233(taxon:196620)|RO:0002233(taxon:282459) creation-date=2009-08-15|modification-date=2021-04-13|comment=evidence survival curves|comment=ADD-IDO Staphylococcus aureus subsp. aureus MW2 ; taxon:196620 Staphylococcus aureus subsp. aureus MSSA476 ; taxon:282459|contributor-id=https://orcid.org/0000-0002-9796-7693|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/459779b4-8402-4481-8926-971c3a629854 + rdf:type owl:NamedIndividual , + ; + ; + "7556.25"^^xsd:string ; + "75"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2009-08-15" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-08-15" ; + "2009-08-15" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0032689 MGI:MGI:3839525|PMID:19139201 ECO:0000315 MGI:MGI:3529594 2009-08-15 MGI GOREL:0001004(EMAPA:35770) creation-date=2009-08-15|modification-date=2009-08-15|comment=anatomy serum ; MA:0002502|comment=evidence ELISA|comment=ADD-IDO|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/46ae531f-b581-4a1b-ae27-60b9eeec6717 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "PMID:15220916" ; + "2007-12-20" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" , + "macrophages from Nod2 KO mice transfected with wildtype mouse Nod2" . + + +### http://model.geneontology.org/MGI_MGI_2429397/46034517-c64d-47f2-8129-2700870167d5 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-02-16" ; + "PMID:18261938" ; + "2009-02-16" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence IB" . + + +### http://model.geneontology.org/MGI_MGI_2429397/462d7e75-b454-4f54-9042-9de7a898ee08 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-7476-6306" ; + "2015-10-23" ; + "PMID:22033934" ; + "2015-10-23" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/47ad30de-4cc2-4500-9649-c3641ab2c239 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "2007-12-20" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/47e2e027-73a3-41ca-824f-6b3c970946de + rdf:type owl:NamedIndividual , + ; + "7162.5"^^xsd:string ; + "75"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2007-12-17" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/476babe7-8bc4-41b4-a0c1-f2c659d444a7 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-02-17" ; + "2009-02-17" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/4765b639-5ed2-44b5-88a8-e4b02c53e0b9 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:1341839" ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "PMID:18261938" ; + "2009-02-16" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" , + "evidence IB" . + + +### http://model.geneontology.org/MGI_MGI_2429397/47933aaf-27cf-4539-b76e-df620af5815b + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-7476-6306" ; + "2015-10-23" ; + "2015-10-23" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/48eb4c97-e253-4429-868f-0d73bf261192 + rdf:type owl:NamedIndividual , + ; + ; + ; + "7950"^^xsd:string ; + "687.5"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2009-08-15" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-08-15" ; + "2009-08-15" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0090022 MGI:MGI:3839525|PMID:19139201 ECO:0000315 MGI:MGI:3529594 2009-08-15 MGI GOREL:0001004(EMAPA:16332),GOREL:0001005(CL:0000775) creation-date=2009-08-15|modification-date=2009-08-15|comment=anatomy blood ; MA:0000059|comment=cell type neutrophil ; CL:0000775|comment=evidence cell counts|comment=ADD-IDO|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-08-15" ; + "2009-08-15" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0090022 MGI:MGI:3839525|PMID:19139201 ECO:0000315 MGI:MGI:3529594 2009-08-15 MGI GOREL:0001004(EMAPA:16332),GOREL:0001005(CL:0000775) creation-date=2009-08-15|modification-date=2009-08-15|comment=anatomy blood ; MA:0000059|comment=cell type neutrophil ; CL:0000775|comment=evidence cell counts|comment=ADD-IDO|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/4889eae2-5069-4d59-88f9-8c20ab8c1cd6 + rdf:type owl:NamedIndividual , + ; + ; + ; + "9131.25"^^xsd:string ; + "687.5"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2009-08-15" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-08-15" ; + "2009-08-15" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0032689 MGI:MGI:3839525|PMID:19139201 ECO:0000315 MGI:MGI:3529594 2009-08-15 MGI GOREL:0001004(EMAPA:35770) creation-date=2009-08-15|modification-date=2009-08-15|comment=anatomy serum ; MA:0002502|comment=evidence ELISA|comment=ADD-IDO|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-08-15" ; + "2009-08-15" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0032689 MGI:MGI:3839525|PMID:19139201 ECO:0000315 MGI:MGI:3529594 2009-08-15 MGI GOREL:0001004(EMAPA:35770) creation-date=2009-08-15|modification-date=2009-08-15|comment=anatomy serum ; MA:0002502|comment=evidence ELISA|comment=ADD-IDO|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/49c90deb-f72d-4136-a365-00d749b89296 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-17" ; + "2007-12-17" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/49d96b43-d0fd-4c5b-96aa-33a8d22bb4a7 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-9990-8331" , + "https://orcid.org/0000-0002-9796-7693" ; + "2021-04-13" ; + "PMID:19139201" ; + "2009-08-15" ; + "http://informatics.jax.org" ; + rdfs:comment "ADD-IDO Staphylococcus aureus subsp. aureus MW2 ; taxon:196620 Staphylococcus aureus subsp. aureus MSSA476 ; taxon:282459" , + "evidence survival curves" . + + +### http://model.geneontology.org/MGI_MGI_2429397/491e92b6-1e68-484e-abac-931426af400d + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-7476-6306" ; + "2015-10-23" ; + "PMID:22033934" ; + "2015-10-23" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/4987090d-bc14-4ef9-a591-f1a3375a4a59 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2010-11-04" ; + "2009-08-27" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/5ab8005f-f505-477e-956c-bd2e3567f7b0 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-17" ; + "PMID:15692051" ; + "2007-12-17" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/5bf9cf64-f997-4848-8912-26905033bc6a + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "2007-12-17" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/5c39c76b-17c6-46df-b436-b42cee9c2b7c + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-17" ; + "2007-12-17" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/5cb34262-236e-4dbb-b219-6b39375cb5f3 + rdf:type owl:NamedIndividual , + ; + ; + "10903.125"^^xsd:string ; + "381.25"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2007-12-17" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-17" ; + "2007-12-17" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0006965 MGI:MGI:3528786|PMID:15692051 ECO:0000315 MGI:MGI:3529594 2007-12-17 MGI GOREL:0001004(EMAPA:32764) creation-date=2007-12-17|modification-date=2007-12-17|comment=anatomy ileum ; MA:0000339|comment=evidence RT-PCR|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/5d7deb8a-3f5c-49f0-951f-13b8aee6a30a + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-02-16" ; + "2009-02-16" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/5ea3d2b2-e9b7-445e-a6fd-96c57eb49125 + rdf:type owl:NamedIndividual , + ; + ; + "6768.75"^^xsd:string ; + "75"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2009-08-15" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2010-02-09" ; + "2009-08-15" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0071608 MGI:MGI:3839525|PMID:19139201 ECO:0000315 MGI:MGI:3529594 2010-02-09 MGI BFO:0000066(EMAPA:35770) creation-date=2009-08-15|modification-date=2010-02-09|comment=anatomy serum ; MA:0002502|comment=evidence ELISA|comment=ADD-IDO|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/5ee053f1-4557-4e64-adc8-91449229d6ed + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-17" ; + "PMID:15692051" ; + "2007-12-17" ; + "http://informatics.jax.org" ; + rdfs:comment "evidence ELISA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/5fda3272-870b-41a9-bee9-ff9019f89d48 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-08-15" ; + "2009-08-15" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/50080432-4326-47c4-94f0-285b59e36f51 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" , + "https://orcid.org/0000-0002-9796-7693" ; + "2021-03-23" ; + "2007-12-20" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/51dceb93-1afc-4f06-a983-003262cffbaf + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:2680581" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-20" ; + "PMID:15220916" ; + "2007-12-20" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" , + "has_participant(CL:0000235)" . + + +### http://model.geneontology.org/MGI_MGI_2429397/51f7369c-6601-47bb-ae3b-c6c6e022ab49 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-9990-8331" , + "https://orcid.org/0000-0003-3394-9805" ; + "2009-02-16" ; + "2007-04-06" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/518d60d7-4d60-4dc5-8c73-239c532fb669 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-08-15" ; + "PMID:19139201" ; + "2009-08-15" ; + "http://informatics.jax.org" ; + rdfs:comment "ADD-IDO" , + "anatomy serum ; MA:0002502" , + "evidence ELISA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/5264a30f-fd81-4669-b671-5372d912bea0 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "PMID:18261938" ; + "2009-02-16" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/53c95ea9-2b44-4db9-a739-512d78b3e3c4 + rdf:type owl:NamedIndividual , + ; + ; + ; + "6571.875"^^xsd:string ; + "381.25"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2007-12-17" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-17" ; + "2007-12-17" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0002253 MGI:MGI:3528786|PMID:15692051 ECO:0000315 MGI:MGI:3529594 2007-12-17 MGI creation-date=2007-12-17|modification-date=2007-12-17|comment=evidence ELISA|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-17" ; + "2007-12-17" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0002253 MGI:MGI:3528786|PMID:15692051 ECO:0000315 MGI:MGI:3529594 2007-12-17 MGI creation-date=2007-12-17|modification-date=2007-12-17|comment=evidence ELISA|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/5409a72b-b29c-45f8-b76c-5d7122a1e5c9 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-7476-6306" ; + "2015-10-23" ; + "2015-10-23" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/55a8d8f8-ad69-418a-bd92-5643c7261d91 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0002-9796-7693" ; + "2013-10-30" ; + "PMID:18167348" ; + "2013-10-30" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type epithelial cell ; CL:0000066" . + + +### http://model.geneontology.org/MGI_MGI_2429397/550fefee-402e-4576-83a9-e06715e30680 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:2680581" ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" , + "https://orcid.org/0000-0002-9796-7693" ; + "2021-03-23" ; + "PMID:15220916" ; + "2005-11-11" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence NF-kappaB activation assay" . + + +### http://model.geneontology.org/MGI_MGI_2429397/551b2ab8-66ce-4dc4-a0fd-63e897b4d3aa + rdf:type owl:NamedIndividual , + ; + ; + ; + "9525"^^xsd:string ; + "687.5"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2007-12-20" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + , + ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "2007-12-20" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0032695 MGI:MGI:3050756|PMID:15220916 ECO:0000314 2020-12-07 MGI GOREL:0001004(CL:0000235) creation-date=2007-12-20|modification-date=2020-12-07|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|comment=macrophages from Nod2 KO mice transfected with wildtype mouse Nod2|contributor-id=https://orcid.org/0000-0001-9990-8331|contributor-id=https://orcid.org/0000-0001-7476-6306" , + "MGI:MGI:2429397 RO:0002264 GO:0032695 MGI:MGI:3050756|PMID:15220916 ECO:0000315 MGI:MGI:2680581 2020-12-07 MGI GOREL:0001004(CL:0000235) creation-date=2007-12-20|modification-date=2020-12-07|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|contributor-id=https://orcid.org/0000-0001-9990-8331|contributor-id=https://orcid.org/0000-0001-7476-6306" + ] . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + , + ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "2007-12-20" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0032695 MGI:MGI:3050756|PMID:15220916 ECO:0000314 2020-12-07 MGI GOREL:0001004(CL:0000235) creation-date=2007-12-20|modification-date=2020-12-07|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|comment=macrophages from Nod2 KO mice transfected with wildtype mouse Nod2|contributor-id=https://orcid.org/0000-0001-9990-8331|contributor-id=https://orcid.org/0000-0001-7476-6306" , + "MGI:MGI:2429397 RO:0002264 GO:0032695 MGI:MGI:3050756|PMID:15220916 ECO:0000315 MGI:MGI:2680581 2020-12-07 MGI GOREL:0001004(CL:0000235) creation-date=2007-12-20|modification-date=2020-12-07|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|contributor-id=https://orcid.org/0000-0001-9990-8331|contributor-id=https://orcid.org/0000-0001-7476-6306" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/551ee35a-d9bb-4b79-80a2-a57a763c13b1 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:2680581" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2008-01-22" ; + "PMID:15220916" ; + "2008-01-22" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/5567f1f3-1c82-43a2-801b-d28f537a8bb4 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-7476-6306" ; + "2015-10-23" ; + "2015-10-23" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/5663ec1c-7b4f-484a-9f52-756b86cb8027 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-9990-8331" , + "https://orcid.org/0000-0002-9796-7693" ; + "2021-04-13" ; + "PMID:19139201" ; + "2009-08-15" ; + "http://informatics.jax.org" ; + rdfs:comment "ADD-IDO Staphylococcus aureus subsp. aureus MW2 ; taxon:196620 Staphylococcus aureus subsp. aureus MSSA476 ; taxon:282459" , + "evidence survival curves" . + + +### http://model.geneontology.org/MGI_MGI_2429397/5682a454-5674-4ae5-9d88-8961fa8a2950 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "PMID:15692051" ; + "2007-12-17" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/6a70b2b3-b5c6-4396-b49a-818422d4fb70 + rdf:type owl:NamedIndividual , + ; + ; + "6375"^^xsd:string ; + "75"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-27"^^xsd:string ; + "2009-02-16" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-02-16" ; + "2009-02-16" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0032874 MGI:MGI:3775161|PMID:18261938 ECO:0000314 2009-02-16 MGI GOREL:0001004(CL:0000235) creation-date=2009-02-16|modification-date=2009-02-16|comment=cell type macrophage ; CL:0000235|comment=evidence IB|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/6bd7c2b1-5060-4325-bcc1-986db3bf90b0 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:2680581" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-20" ; + "PMID:15220916" ; + "2007-12-20" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/6c179c03-85c8-4e14-8c13-d48af9465eb0 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" , + "https://orcid.org/0000-0003-3394-9805" ; + "2014-05-14" ; + "2009-08-27" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/6c3b091d-bdfe-493b-b911-ca7cb49b46f2 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:2680581" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2010-08-19" ; + "PMID:16949315" ; + "2010-08-19" ; + "http://informatics.jax.org" ; + rdfs:comment "CD11b-positive splenocytes used" , + "evidence ELISA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/6cebdf98-5003-420e-8a32-467c050bc257 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "2007-12-17" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/6d6d7cb5-5886-48f4-9bb4-798f43607e59 + rdf:type owl:NamedIndividual , + ; + ; + ; + "4603.125"^^xsd:string ; + "381.25"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2007-12-17" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + , + , + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-02-16" ; + "2007-12-17" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0050830 MGI:MGI:3528786|PMID:15692051 ECO:0000315 MGI:MGI:3529594 2007-12-17 MGI creation-date=2007-12-17|modification-date=2007-12-17|comment=evidence bacterial counts in liver and spleen|contributor-id=https://orcid.org/0000-0001-9990-8331" , + "MGI:MGI:2429397 RO:0002264 GO:0050830 MGI:MGI:3775161|PMID:18261938 ECO:0000315 MGI:MGI:3529594 2009-02-16 MGI creation-date=2009-02-16|modification-date=2009-02-16|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|comment=evidence IB|comment=has_participant(CL:0000235)|contributor-id=https://orcid.org/0000-0001-9990-8331" , + "MGI:MGI:2429397 RO:0002264 GO:0050830 MGI:MGI:3775161|PMID:18261938 ECO:0000316 MGI:MGI:1341839 2009-02-16 MGI creation-date=2009-02-16|modification-date=2009-02-16|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|comment=evidence IB|comment=has_participant(CL:0000235)|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + , + , + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-02-16" ; + "2007-12-17" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0050830 MGI:MGI:3528786|PMID:15692051 ECO:0000315 MGI:MGI:3529594 2007-12-17 MGI creation-date=2007-12-17|modification-date=2007-12-17|comment=evidence bacterial counts in liver and spleen|contributor-id=https://orcid.org/0000-0001-9990-8331" , + "MGI:MGI:2429397 RO:0002264 GO:0050830 MGI:MGI:3775161|PMID:18261938 ECO:0000315 MGI:MGI:3529594 2009-02-16 MGI creation-date=2009-02-16|modification-date=2009-02-16|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|comment=evidence IB|comment=has_participant(CL:0000235)|contributor-id=https://orcid.org/0000-0001-9990-8331" , + "MGI:MGI:2429397 RO:0002264 GO:0050830 MGI:MGI:3775161|PMID:18261938 ECO:0000316 MGI:MGI:1341839 2009-02-16 MGI creation-date=2009-02-16|modification-date=2009-02-16|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|comment=evidence IB|comment=has_participant(CL:0000235)|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/6dd290d0-5662-49f3-884e-6fc93c210db2 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2010-08-19" ; + "2010-08-19" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/6e29a437-6142-46aa-a114-603a42dd21b9 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:2685628" ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0003-3394-9805" ; + "2020-04-03" ; + "PMID:17187069" ; + "2007-04-10" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type permanent cell line cell ; CLO:0000019 ATCC:TIB-71" , + "evidence inferred from protein binding ; ECO:0000024" . + + +### http://model.geneontology.org/MGI_MGI_2429397/6e7830df-cfbb-43ce-b9e5-e4dc6ea9146d + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:1341839" ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "PMID:18261938" ; + "2009-02-16" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" , + "evidence IB" . + + +### http://model.geneontology.org/MGI_MGI_2429397/6f7871ae-6ea5-4e8b-8937-9a7393c3a148 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-17" ; + "PMID:15692051" ; + "2007-12-17" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence IB" . + + +### http://model.geneontology.org/MGI_MGI_2429397/60af1e61-f6e6-4876-835a-b94ba90389de + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-08-15" ; + "PMID:19139201" ; + "2009-08-15" ; + "http://informatics.jax.org" ; + rdfs:comment "ADD-IDO" , + "anatomy serum ; MA:0002502" , + "evidence ELISA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/61bbe7f4-e471-45a2-b5c4-c80e75c74d0e + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:2680581" ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "PMID:15220916" ; + "2007-12-20" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/61c08f8f-9ec3-4cb1-978b-c5f2cf71a578 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "PMID:18261938" ; + "2009-02-16" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" , + "evidence IB" . + + +### http://model.geneontology.org/MGI_MGI_2429397/613dfe90-c403-46ae-8f02-3474624a6d96 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "PMID:15692051" ; + "2007-12-17" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/6131f779-9d20-4ff3-bdd9-3e188b7ed4fb + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:2680581" ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "PMID:14560001" ; + "2007-12-14" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/63e182da-049b-4664-ac1c-0eb1a4810507 + rdf:type owl:NamedIndividual , + ; + ; + ; + "10509.375"^^xsd:string ; + "381.25"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306" ; + "2023-09-28"^^xsd:string ; + "2015-10-23" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-7476-6306" ; + "2015-10-23" ; + "2015-10-23" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:1904417 MGI:MGI:5299952|PMID:22033934 ECO:0000315 MGI:MGI:3529594 2015-10-23 MGI BFO:0000066(CL:0000235),GOREL:0001004(CL:0000235)|BFO:0000066(CL:0000451),GOREL:0001004(CL:0000451) creation-date=2015-10-23|modification-date=2015-10-23|contributor-id=https://orcid.org/0000-0001-7476-6306" + ] . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-7476-6306" ; + "2015-10-23" ; + "2015-10-23" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:1904417 MGI:MGI:5299952|PMID:22033934 ECO:0000315 MGI:MGI:3529594 2015-10-23 MGI BFO:0000066(CL:0000235),GOREL:0001004(CL:0000235)|BFO:0000066(CL:0000451),GOREL:0001004(CL:0000451) creation-date=2015-10-23|modification-date=2015-10-23|contributor-id=https://orcid.org/0000-0001-7476-6306" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/6336dd92-35c8-4354-b5e2-da89acecf787 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-02-16" ; + "PMID:18261938" ; + "2009-02-16" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" , + "evidence IB" , + "has_participant(CL:0000235)" . + + +### http://model.geneontology.org/MGI_MGI_2429397/6379e893-62ab-4dd3-b42a-2bb81c97feae + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0003-3394-9805" ; + "2014-05-14" ; + "PMID:23892723" ; + "2014-05-14" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/64c31d0f-2106-449e-9255-4d15b750c544 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2008-01-22" ; + "2008-01-22" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/645d99f5-426a-484d-8def-8b158758d9c2 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:1341839" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-02-16" ; + "PMID:18261938" ; + "2009-02-16" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" , + "evidence IB" , + "has_participant(CL:0000235)" . + + +### http://model.geneontology.org/MGI_MGI_2429397/64886300-b1a2-4b8f-bc0d-ab60a2c2dc3c + rdf:type owl:NamedIndividual , + ; + ; + "5784.375"^^xsd:string ; + "381.25"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2009-02-16" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-02-16" ; + "2009-02-16" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0032874 MGI:MGI:3775161|PMID:18261938 ECO:0000314 2009-02-16 MGI GOREL:0001004(CL:0000235) creation-date=2009-02-16|modification-date=2009-02-16|comment=cell type macrophage ; CL:0000235|comment=evidence IB|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/65039e8700001620 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string ; + "2023-09-28"^^xsd:string ; + "PMID:18261938"^^xsd:string ; + "http://informatics.jax.org"^^xsd:string . + + +### http://model.geneontology.org/MGI_MGI_2429397/65039e8700001621 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string ; + "2023-09-28"^^xsd:string ; + "PMID:22033934"^^xsd:string ; + "http://informatics.jax.org"^^xsd:string . + + +### http://model.geneontology.org/MGI_MGI_2429397/652f9ad1-b092-4914-be9f-a43cade38d4d + rdf:type owl:NamedIndividual , + ; + "5981.25"^^xsd:string ; + "75"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2010-08-19" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/6680ed2a-99a6-4617-b391-04700a1269e2 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "PMID:15220916" ; + "2007-12-20" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" , + "macrophages from Nod2 KO mice transfected with wildtype mouse Nod2" . + + +### http://model.geneontology.org/MGI_MGI_2429397/67fce4e0-78e5-49ee-9100-1e79ce629af7 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-08-15" ; + "PMID:19139201" ; + "2009-08-15" ; + "http://informatics.jax.org" ; + rdfs:comment "ADD-IDO" , + "anatomy blood ; MA:0000059" , + "cell type neutrophil ; CL:0000775" , + "evidence cell counts" . + + +### http://model.geneontology.org/MGI_MGI_2429397/67fde573-b46a-467c-bb65-bf3a782b374b + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-17" ; + "2007-12-17" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/68768f56-95f7-4dff-a8fe-17ea46023bd2 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:1341839" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-02-16" ; + "PMID:18261938" ; + "2009-02-16" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" , + "evidence IB" , + "has_participant(CL:0000235)" . + + +### http://model.geneontology.org/MGI_MGI_2429397/69ecc989-50aa-4584-93c2-5cc804295e58 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-17" ; + "PMID:15692051" ; + "2007-12-17" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/694278e7-2549-46d5-ae85-7c1ffb2ae1bd + rdf:type owl:NamedIndividual , + ; + ; + "5587.5"^^xsd:string ; + "75"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2008-01-22" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2008-01-22" ; + "2008-01-22" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0034136 MGI:MGI:3050756|PMID:15220916 ECO:0000315 MGI:MGI:2680581 2008-01-22 MGI GOREL:0001004(CL:0000235) creation-date=2008-01-22|modification-date=2008-01-22|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/694311e0-148e-4fb5-b9f4-56b6600aa817 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-9990-8331" , + "https://orcid.org/0000-0002-9796-7693" ; + "2021-04-13" ; + "PMID:19139201" ; + "2009-08-15" ; + "http://informatics.jax.org" ; + rdfs:comment "ADD-IDO Staphylococcus aureus subsp. aureus MW2 ; taxon:196620 Staphylococcus aureus subsp. aureus MSSA476 ; taxon:282459" , + "evidence survival curves" . + + +### http://model.geneontology.org/MGI_MGI_2429397/69601ea4-8f8e-4f8c-b32b-c3af86beb5ce + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "PMID:15220916" ; + "2007-12-20" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" , + "macrophages from Nod2 KO mice transfected with wildtype mouse Nod2" . + + +### http://model.geneontology.org/MGI_MGI_2429397/7b4aada6-4ca3-41a3-8911-c2849228ae49 + rdf:type owl:NamedIndividual , + ; + ; + ; + "7162.5"^^xsd:string ; + "687.5"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306" ; + "2023-09-28"^^xsd:string ; + "2015-10-23" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-7476-6306" ; + "2015-10-23" ; + "2015-10-23" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:1904417 MGI:MGI:5299952|PMID:22033934 ECO:0000315 MGI:MGI:3529594 2015-10-23 MGI BFO:0000066(CL:0000235),GOREL:0001004(CL:0000235)|BFO:0000066(CL:0000451),GOREL:0001004(CL:0000451) creation-date=2015-10-23|modification-date=2015-10-23|contributor-id=https://orcid.org/0000-0001-7476-6306" + ] . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-7476-6306" ; + "2015-10-23" ; + "2015-10-23" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:1904417 MGI:MGI:5299952|PMID:22033934 ECO:0000315 MGI:MGI:3529594 2015-10-23 MGI BFO:0000066(CL:0000235),GOREL:0001004(CL:0000235)|BFO:0000066(CL:0000451),GOREL:0001004(CL:0000451) creation-date=2015-10-23|modification-date=2015-10-23|contributor-id=https://orcid.org/0000-0001-7476-6306" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/7e25ed14-cd7b-4287-b0da-ba436b8cf050 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:2680581" ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" , + "https://orcid.org/0000-0002-9796-7693" ; + "2021-03-23" ; + "PMID:15220916" ; + "2007-12-20" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence NF-kappaB activation assay" . + + +### http://model.geneontology.org/MGI_MGI_2429397/7e47d334-c3c6-4f0f-9120-5985ce30b221 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:2680581" ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "PMID:15220916" ; + "2007-12-20" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/7e647243-30f0-4354-8610-60ecb9c45e5a + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:2680581" ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" , + "https://orcid.org/0000-0002-9796-7693" ; + "2021-03-23" ; + "PMID:15220916" ; + "2007-12-20" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence NF-kappaB activation assay" . + + +### http://model.geneontology.org/MGI_MGI_2429397/7e967994-614c-4393-9653-8297606aacf0 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-02-16" ; + "PMID:18261938" ; + "2009-02-16" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence IB" . + + +### http://model.geneontology.org/MGI_MGI_2429397/7ec0bb59-22ba-4155-8d34-cc3e312e9402 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:2680581" ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "PMID:15220916" ; + "2007-12-20" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/71f72e37-3413-45a3-849e-997670480fa7 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:2680581" ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "PMID:15220916" ; + "2007-12-20" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/7209746d-2502-4821-85f2-4a91438ae18a + rdf:type owl:NamedIndividual , + ; + ; + ; + "11493.75"^^xsd:string ; + "687.5"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2007-12-20" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "2007-12-20" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0032689 MGI:MGI:3050756|PMID:15220916 ECO:0000315 MGI:MGI:2680581 2020-12-07 MGI GOREL:0001004(CL:0000235) creation-date=2007-12-20|modification-date=2020-12-07|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|contributor-id=https://orcid.org/0000-0001-9990-8331|contributor-id=https://orcid.org/0000-0001-7476-6306" + ] . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "2007-12-20" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0032689 MGI:MGI:3050756|PMID:15220916 ECO:0000315 MGI:MGI:2680581 2020-12-07 MGI GOREL:0001004(CL:0000235) creation-date=2007-12-20|modification-date=2020-12-07|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|contributor-id=https://orcid.org/0000-0001-9990-8331|contributor-id=https://orcid.org/0000-0001-7476-6306" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/731c722c-7d22-4f7a-9ca5-d66110c5357f + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "2007-12-14" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/734fe77e-5488-4186-a011-9fab38e8cc2e + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:2680581" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-20" ; + "PMID:15220916" ; + "2007-12-20" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/737e2590-21cd-414d-8d9a-ee2ece2ded9b + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-02-16" ; + "PMID:18261938" ; + "2009-02-16" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence IB" . + + +### http://model.geneontology.org/MGI_MGI_2429397/7398e605-2b51-4d31-b6a6-3e390ccc4d5f + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-17" ; + "PMID:15692051" ; + "2007-12-17" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence IB" . + + +### http://model.geneontology.org/MGI_MGI_2429397/74c010b4-430d-4c45-80a1-78c59306c815 + rdf:type owl:NamedIndividual , + ; + "UniProtKB:Q9HC29" ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2010-11-04" ; + "GO_REF:0000008" ; + "2009-08-27" ; + "http://informatics.jax.org" ; + rdfs:comment "ADD-IDO" , + "cell type permanent cell line ; CLO:0000019 293 [HEK293] ; ATCC:CRL-1573" , + "evidence NF-kappaB activation assay" , + "external ref PMID:12527755 IDA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/76d49327-59ea-4016-b044-314c929d33ae + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-17" ; + "PMID:15692051" ; + "2007-12-17" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence IB" . + + +### http://model.geneontology.org/MGI_MGI_2429397/761b7a22-24e4-4a65-ae5f-cdf6bf7bb25f + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:1341839" ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "PMID:18261938" ; + "2009-02-16" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" , + "evidence IB" . + + +### http://model.geneontology.org/MGI_MGI_2429397/78ac411f-0b03-43ca-9dcf-0679244ac8ad + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-7476-6306" ; + "2013-12-30" ; + "2013-12-30" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/7807c6dd-063b-46be-a198-2f29747ee11b + rdf:type owl:NamedIndividual , + ; + ; + ; + "6768.75"^^xsd:string ; + "687.5"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2009-02-17" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-02-17" ; + "2009-02-17" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0070374 MGI:MGI:3775161|PMID:18261938 ECO:0000314 2009-02-17 MGI GOREL:0001004(CL:0000235) creation-date=2009-02-17|modification-date=2009-02-17|comment=cell type macrophage ; CL:0000235|comment=evidence IB|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-02-17" ; + "2009-02-17" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0070374 MGI:MGI:3775161|PMID:18261938 ECO:0000314 2009-02-17 MGI GOREL:0001004(CL:0000235) creation-date=2009-02-17|modification-date=2009-02-17|comment=cell type macrophage ; CL:0000235|comment=evidence IB|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/79ab1a7b-dc76-4c9e-95e4-4f10a2634cd9 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-08-15" ; + "PMID:19139201" ; + "2009-08-15" ; + "http://informatics.jax.org" ; + rdfs:comment "ADD-IDO" , + "anatomy blood ; MA:0000059" , + "cell type neutrophil ; CL:0000775" , + "evidence cell counts" . + + +### http://model.geneontology.org/MGI_MGI_2429397/79b9c671-0ce4-4c72-a4a1-b922ea4e4321 + rdf:type owl:NamedIndividual , + ; + "5193.75"^^xsd:string ; + "75"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2007-12-17" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/792de454-6108-4548-8c87-b47a64dcc59a + rdf:type owl:NamedIndividual , + ; + ; + ; + "13068.75"^^xsd:string ; + "687.5"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2009-08-15" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-08-15" ; + "2009-08-15" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0050766 MGI:MGI:3839525|PMID:19139201 ECO:0000315 MGI:MGI:3529594 2009-08-15 MGI GOREL:0001004(CL:0000775) creation-date=2009-08-15|modification-date=2009-08-15|comment=cell type neutrophil ; CL:0000775|comment=evidence phagocytosis assay|comment=ADD-IDO|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-08-15" ; + "2009-08-15" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0050766 MGI:MGI:3839525|PMID:19139201 ECO:0000315 MGI:MGI:3529594 2009-08-15 MGI GOREL:0001004(CL:0000775) creation-date=2009-08-15|modification-date=2009-08-15|comment=cell type neutrophil ; CL:0000775|comment=evidence phagocytosis assay|comment=ADD-IDO|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/8a69e283-3a40-4643-9c7a-0e270a29ee17 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:1341839" ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "PMID:18261938" ; + "2009-02-16" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" , + "evidence IB" . + + +### http://model.geneontology.org/MGI_MGI_2429397/8b530664-dea9-4f4a-9510-d6b330ca1a6a + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2010-02-09" ; + "PMID:19139201" ; + "2009-08-15" ; + "http://informatics.jax.org" ; + rdfs:comment "ADD-IDO" , + "anatomy serum ; MA:0002502" , + "evidence ELISA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/8ba54e41-f264-4318-8cee-2ef95e2b2484 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:2680581" ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "PMID:14560001" ; + "2007-12-14" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/8bc1a526-cda4-4858-89df-89c5e0046e71 + rdf:type owl:NamedIndividual , + ; + ; + "4800"^^xsd:string ; + "75"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-27"^^xsd:string ; + "2009-08-15" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-08-15" ; + "2009-08-15" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0090022 MGI:MGI:3839525|PMID:19139201 ECO:0000315 MGI:MGI:3529594 2009-08-15 MGI GOREL:0001004(EMAPA:16332),GOREL:0001005(CL:0000775) creation-date=2009-08-15|modification-date=2009-08-15|comment=anatomy blood ; MA:0000059|comment=cell type neutrophil ; CL:0000775|comment=evidence cell counts|comment=ADD-IDO|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/8c060e0a-115d-4f9c-a1f3-c580ef69a59d + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-08-15" ; + "PMID:19139201" ; + "2009-08-15" ; + "http://informatics.jax.org" ; + rdfs:comment "ADD-IDO" , + "anatomy serum ; MA:0002502" , + "evidence ELISA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/8c7b0f97-ff04-4959-9f54-c940860fb245 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-08-15" ; + "PMID:19139201" ; + "2009-08-15" ; + "http://informatics.jax.org" ; + rdfs:comment "ADD-IDO" , + "cell type neutrophil ; CL:0000775" , + "evidence phagocytosis assay" . + + +### http://model.geneontology.org/MGI_MGI_2429397/8cbeb667-5d67-4c12-b67c-9199fde82e2b + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-7476-6306" ; + "2015-10-23" ; + "PMID:22033934" ; + "2015-10-23" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/8f4b0055-60c1-45c5-9c4f-d0ccb45819d7 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-02-16" ; + "2007-12-17" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/8003d01a-1388-4ca6-8c4a-b9a0e6749d1a + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-17" ; + "PMID:15692051" ; + "2007-12-17" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence IB" . + + +### http://model.geneontology.org/MGI_MGI_2429397/81efefd2-d3b2-4544-b754-d224cce8a684 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "PMID:18261938" ; + "2009-02-16" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/810f3fc0-93d4-4973-9768-4f8a9131e2b8 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-17" ; + "PMID:15692051" ; + "2007-12-17" ; + "http://informatics.jax.org" ; + rdfs:comment "anatomy ileum ; MA:0000339" , + "evidence RT-PCR" . + + +### http://model.geneontology.org/MGI_MGI_2429397/811d191b-bba6-4225-a28c-7fc5d2950cd7 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "PMID:18261938" ; + "2009-02-16" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/8139e8e5-2a81-416a-834d-a74fb6c4df9a + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-02-16" ; + "PMID:18261938" ; + "2009-02-16" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence IB" . + + +### http://model.geneontology.org/MGI_MGI_2429397/815e1b98-32c1-421f-9e97-0d013e46d114 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-20" ; + "PMID:15220916" ; + "2007-12-20" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" , + "has_participant(CL:0000235)" , + "macrophages from Nod2 KO mice transfected with wildtype mouse Nod2" . + + +### http://model.geneontology.org/MGI_MGI_2429397/82daf41d-5ed9-4aa4-944a-8fa8573d034f + rdf:type owl:NamedIndividual , + ; + "4406.25"^^xsd:string ; + "75"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2007-12-17" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/8235640a-193c-4bbf-b093-59bd7c7adb60 + rdf:type owl:NamedIndividual , + ; + "4012.5"^^xsd:string ; + "75"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2007-12-14" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/829f3042-8266-454c-89aa-e5a641bc1fd8 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:1341839" ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "PMID:18261938" ; + "2009-02-16" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" , + "evidence IB" . + + +### http://model.geneontology.org/MGI_MGI_2429397/82968e17-dd36-434c-89a9-0b06e23b808e + rdf:type owl:NamedIndividual , + ; + ; + "2929.75"^^xsd:string ; + "568"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306" ; + "2023-09-28"^^xsd:string ; + "2015-10-23" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-7476-6306" ; + "2015-10-23" ; + "2015-10-23" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:1901224 MGI:MGI:5299952|PMID:22033934 ECO:0000315 MGI:MGI:3529594 2015-10-23 MGI BFO:0000066(CL:0000235),GOREL:0001004(CL:0000235) creation-date=2015-10-23|modification-date=2015-10-23|contributor-id=https://orcid.org/0000-0001-7476-6306" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/832b2bd6-3ea9-4015-bfeb-8c79216fa664 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:2680581" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2010-08-19" ; + "PMID:16949315" ; + "2010-08-19" ; + "http://informatics.jax.org" ; + rdfs:comment "anatomy colon ; MA:0000335" , + "evidence histology" , + "regulates_o_has_participant(EMAPA:18939 TS28)" . + + +### http://model.geneontology.org/MGI_MGI_2429397/83251923-c2ab-4025-bf93-81953590d9e3 + rdf:type owl:NamedIndividual , + ; + "3225"^^xsd:string ; + "75"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306" ; + "2023-09-27"^^xsd:string ; + "2015-10-23" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/85ea8059-d69d-42c7-9c9b-6b496ff4d3ac + rdf:type owl:NamedIndividual , + ; + ; + "2831.25"^^xsd:string ; + "75"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306" ; + "2023-09-28"^^xsd:string ; + "2015-10-23" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-7476-6306" ; + "2015-10-23" ; + "2015-10-23" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:1904417 MGI:MGI:5299952|PMID:22033934 ECO:0000315 MGI:MGI:3529594 2015-10-23 MGI BFO:0000066(CL:0000235),GOREL:0001004(CL:0000235)|BFO:0000066(CL:0000451),GOREL:0001004(CL:0000451) creation-date=2015-10-23|modification-date=2015-10-23|contributor-id=https://orcid.org/0000-0001-7476-6306" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/85f718ab-ad1a-49a9-aaa4-d28374fd8352 + rdf:type owl:NamedIndividual , + ; + ; + "2437.5"^^xsd:string ; + "75"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2009-02-17" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-02-17" ; + "2009-02-17" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0070374 MGI:MGI:3775161|PMID:18261938 ECO:0000314 2009-02-17 MGI GOREL:0001004(CL:0000235) creation-date=2009-02-17|modification-date=2009-02-17|comment=cell type macrophage ; CL:0000235|comment=evidence IB|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/86b1299d-22da-479b-afc7-9281af0ae636 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-7476-6306" ; + "2015-10-23" ; + "PMID:22033934" ; + "2015-10-23" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/86c4e219-349d-438a-adcf-9d0ed9e1985d + rdf:type owl:NamedIndividual , + ; + "2043.75"^^xsd:string ; + "75"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2007-12-17" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/8692c218-d08f-43d0-af95-a2c64766fc4c + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:2680581" ; + "https://orcid.org/0000-0001-9990-8331" , + "https://orcid.org/0000-0002-9796-7693" ; + "2008-02-15" ; + "PMID:15220916" ; + "2007-12-20" ; + "http://informatics.jax.org" ; + rdfs:comment "evidence ELISA" , + "splenocytes used" . + + +### http://model.geneontology.org/MGI_MGI_2429397/870652ac-48e6-4640-908c-060ee810ec82 + rdf:type owl:NamedIndividual , + ; + ; + "4996.875"^^xsd:string ; + "381.25"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2008-01-22" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2008-01-22" ; + "2008-01-22" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0034136 MGI:MGI:3050756|PMID:15220916 ECO:0000315 MGI:MGI:2680581 2008-01-22 MGI GOREL:0001004(CL:0000235) creation-date=2008-01-22|modification-date=2008-01-22|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/872cc328-c7e8-4a36-a76c-8f2092aa11f9 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:2680581" ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "PMID:15220916" ; + "2007-12-20" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/872e8f9a-1308-4fc3-b10d-debdb120a08d + rdf:type owl:NamedIndividual , + ; + ; + ; + "18384.375"^^xsd:string ; + "381.25"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" , + "https://orcid.org/0000-0003-3394-9805" ; + "2023-09-28"^^xsd:string ; + "2007-04-06" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" , + "https://orcid.org/0000-0003-3394-9805" ; + "2009-02-16" ; + "2007-04-06" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0032874 MGI:MGI:3697751|PMID:17187069 ECO:0000266 UniProtKB:Q9HC29 2009-02-16 MGI creation-date=2007-04-06|modification-date=2009-02-16|comment=cell type 293 ; ATCC:0000013 ; CRL-1573|comment=evidence inferred from Western blot assay ; ECO:0000112|comment=target p38|comment=evidence:immunoblot of MAPK phosphorylation|contributor-id=https://orcid.org/0000-0001-9990-8331|contributor-id=https://orcid.org/0000-0003-3394-9805" + ] . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" , + "https://orcid.org/0000-0003-3394-9805" ; + "2009-02-16" ; + "2007-04-06" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0032874 MGI:MGI:3697751|PMID:17187069 ECO:0000266 UniProtKB:Q9HC29 2009-02-16 MGI creation-date=2007-04-06|modification-date=2009-02-16|comment=cell type 293 ; ATCC:0000013 ; CRL-1573|comment=evidence inferred from Western blot assay ; ECO:0000112|comment=target p38|comment=evidence:immunoblot of MAPK phosphorylation|contributor-id=https://orcid.org/0000-0001-9990-8331|contributor-id=https://orcid.org/0000-0003-3394-9805" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/8720cd7c-e93f-4551-a8ce-46d09ec4757a + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-7476-6306" ; + "2015-10-23" ; + "PMID:22033934" ; + "2015-10-23" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/87819495-21e8-45eb-88d2-587c35f54c98 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:2685628" ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0003-3394-9805" ; + "2020-04-03" ; + "PMID:17187069" ; + "2007-04-10" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type permanent cell line cell ; CLO:0000019 ATCC:TIB-71" , + "evidence inferred from protein binding ; ECO:0000024" . + + +### http://model.geneontology.org/MGI_MGI_2429397/88e44c46-dcf8-413d-9b67-ca35273e2ea7 + rdf:type owl:NamedIndividual , + ; + ; + "20353.125"^^xsd:string ; + "381.25"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2009-08-15" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-08-15" ; + "2009-08-15" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0032703 MGI:MGI:3839525|PMID:19139201 ECO:0000315 MGI:MGI:3529594 2009-08-15 MGI GOREL:0001004(EMAPA:35770) creation-date=2009-08-15|modification-date=2009-08-15|comment=anatomy serum ; MA:0002502|comment=evidence ELISA|comment=ADD-IDO|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/88038ad7-463e-491d-bc1a-24cffa9f3512 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:2680581" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-14" ; + "PMID:14560001" ; + "2007-12-14" ; + "http://informatics.jax.org" ; + rdfs:comment "evidence in vivo challenge with endotoxin" . + + +### http://model.geneontology.org/MGI_MGI_2429397/8960a2be-93cc-49b9-bf12-7521e076456e + rdf:type owl:NamedIndividual , + ; + ; + "11690.625"^^xsd:string ; + "381.25"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2007-12-20" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "2007-12-20" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0032701 MGI:MGI:3050756|PMID:15220916 ECO:0000315 MGI:MGI:2680581 2020-12-07 MGI GOREL:0001004(CL:0000235) creation-date=2007-12-20|modification-date=2020-12-07|comment=cell type macrophage ; CL:0000235|comment=evidence ELISA|contributor-id=https://orcid.org/0000-0001-9990-8331|contributor-id=https://orcid.org/0000-0001-7476-6306" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/9b11acb9-86db-4f11-aaa8-674787e22228 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "PMID:15220916" ; + "2007-12-20" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" , + "macrophages from Nod2 KO mice transfected with wildtype mouse Nod2" . + + +### http://model.geneontology.org/MGI_MGI_2429397/9c2c7c8e-76e3-48f9-8d39-bfedc3ed01b0 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-7476-6306" ; + "2015-10-23" ; + "2015-10-23" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/9c602494-a3eb-4716-8c97-75cc80755154 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "PMID:18261938" ; + "2009-02-16" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/9cbabe3b-1fa5-4dd1-b287-c69e82a5fe93 + rdf:type owl:NamedIndividual , + ; + "UniProtKB:Q9HC29" ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2010-11-04" ; + "GO_REF:0000008" ; + "2009-08-27" ; + "http://informatics.jax.org" ; + rdfs:comment "ADD-IDO" , + "cell type permanent cell line ; CLO:0000019 293 [HEK293] ; ATCC:CRL-1573" , + "evidence NF-kappaB activation assay" , + "external ref PMID:12527755 IDA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/9d841c5f-022e-4475-b243-e07c6d4b6b50 + rdf:type owl:NamedIndividual , + ; + ; + ; + "8737.5"^^xsd:string ; + "687.5"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2009-02-16" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-02-16" ; + "2009-02-16" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0032874 MGI:MGI:3775161|PMID:18261938 ECO:0000314 2009-02-16 MGI GOREL:0001004(CL:0000235) creation-date=2009-02-16|modification-date=2009-02-16|comment=cell type macrophage ; CL:0000235|comment=evidence IB|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-02-16" ; + "2009-02-16" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0032874 MGI:MGI:3775161|PMID:18261938 ECO:0000314 2009-02-16 MGI GOREL:0001004(CL:0000235) creation-date=2009-02-16|modification-date=2009-02-16|comment=cell type macrophage ; CL:0000235|comment=evidence IB|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/9dcaddbd-4c77-4a16-ac85-361f1179251c + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" , + "https://orcid.org/0000-0002-9796-7693" ; + "2021-03-23" ; + "2005-11-11" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/9eb5cbd1-4618-40cd-977f-e4273e5505ab + rdf:type owl:NamedIndividual , + ; + "UniProtKB:Q9HC29" ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2010-11-04" ; + "GO_REF:0000008" ; + "2009-08-27" ; + "http://informatics.jax.org" ; + rdfs:comment "ADD-IDO" , + "cell type permanent cell line ; CLO:0000019 293 [HEK293] ; ATCC:CRL-1573" , + "evidence NF-kappaB activation assay" , + "external ref PMID:12527755 IDA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/9f0d55e8-1638-42c2-94f1-57c1e6bdfb3b + rdf:type owl:NamedIndividual , + ; + ; + "21140.625"^^xsd:string ; + "381.25"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2009-08-15" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-08-15" ; + "2009-08-15" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0090022 MGI:MGI:3839525|PMID:19139201 ECO:0000315 MGI:MGI:3529594 2009-08-15 MGI GOREL:0001004(EMAPA:16332),GOREL:0001005(CL:0000775) creation-date=2009-08-15|modification-date=2009-08-15|comment=anatomy blood ; MA:0000059|comment=cell type neutrophil ; CL:0000775|comment=evidence cell counts|comment=ADD-IDO|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/9f332445-db92-45e2-9b39-66ea2b077481 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-08-15" ; + "PMID:19139201" ; + "2009-08-15" ; + "http://informatics.jax.org" ; + rdfs:comment "ADD-IDO" , + "anatomy serum ; MA:0002502" , + "evidence ELISA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/9f3b6651-21a8-477c-914d-10aaddc4745f + rdf:type owl:NamedIndividual , + ; + ; + "1650"^^xsd:string ; + "75"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" , + "https://orcid.org/0000-0002-9796-7693" ; + "2023-09-27"^^xsd:string ; + "2005-11-11" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" , + "https://orcid.org/0000-0002-9796-7693" ; + "2021-03-23" ; + "2005-11-11" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0051092 MGI:MGI:3050756|PMID:15220916 ECO:0000315 MGI:MGI:2680581 2021-03-23 MGI BFO:0000066(CL:0000235) creation-date=2005-11-11|modification-date=2021-03-23|comment=cell type macrophage ; CL:0000235|comment=evidence NF-kappaB activation assay|contributor-id=https://orcid.org/0000-0001-7476-6306|contributor-id=https://orcid.org/0000-0002-9796-7693|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/90e29ba8-fa95-46a7-9155-4a4e656a13f3 + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-17" ; + "2007-12-17" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/90e6f0c0-39e4-4e9a-ab03-e4b0223c1a1c + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "PMID:15220916" ; + "2007-12-20" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" , + "macrophages from Nod2 KO mice transfected with wildtype mouse Nod2" . + + +### http://model.geneontology.org/MGI_MGI_2429397/900a152d-cd85-4394-bf49-2626d56ee7b0 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "PMID:15692051" ; + "2007-12-17" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/900e3bd0-f70c-4330-a70a-6660ceb23c12 + rdf:type owl:NamedIndividual , + ; + ; + "17203.125"^^xsd:string ; + "381.25"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2009-08-15" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2009-08-15" ; + "2009-08-15" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0050766 MGI:MGI:3839525|PMID:19139201 ECO:0000315 MGI:MGI:3529594 2009-08-15 MGI GOREL:0001004(CL:0000775) creation-date=2009-08-15|modification-date=2009-08-15|comment=cell type neutrophil ; CL:0000775|comment=evidence phagocytosis assay|comment=ADD-IDO|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/904b8441-9434-4678-96e4-c0c98a86a129 + rdf:type owl:NamedIndividual , + ; + "UniProtKB:Q9HC29" ; + "https://orcid.org/0000-0001-9990-8331" , + "https://orcid.org/0000-0003-3394-9805" ; + "2009-02-16" ; + "PMID:17187069" ; + "2007-04-06" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type 293 ; ATCC:0000013 ; CRL-1573" , + "evidence inferred from reporter gene assay ; ECO:0000049" , + "evidence:luciferase transcriptional reporter assay" , + "target p38" . + + +### http://model.geneontology.org/MGI_MGI_2429397/91022cd8-54a9-46b6-a034-3c7b6c7a8912 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:2680581" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-14" ; + "PMID:14560001" ; + "2007-12-14" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence ELISA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/9334d85e-2dce-4297-a99c-27984bda9840 + rdf:type owl:NamedIndividual , + ; + ; + ; + "5390.625"^^xsd:string ; + "381.25"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2010-08-19" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2010-08-19" ; + "2010-08-19" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0002862 MGI:MGI:3686795|PMID:16949315 ECO:0000315 MGI:MGI:2680581 2010-08-19 MGI creation-date=2010-08-19|modification-date=2010-08-19|comment=anatomy colon ; MA:0000335|comment=evidence histology|comment=regulates_o_has_participant(EMAPA:18939 TS28)|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2010-08-19" ; + "2010-08-19" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0002862 MGI:MGI:3686795|PMID:16949315 ECO:0000315 MGI:MGI:2680581 2010-08-19 MGI creation-date=2010-08-19|modification-date=2010-08-19|comment=anatomy colon ; MA:0000335|comment=evidence histology|comment=regulates_o_has_participant(EMAPA:18939 TS28)|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/938acca1-c5b9-47d9-8b74-0a2f11e473ec + rdf:type owl:NamedIndividual , + ; + ; + "19112.88330078125"^^xsd:string ; + "218.25"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2007-12-17" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-17" ; + "2007-12-17" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0050731 MGI:MGI:3528786|PMID:15692051 ECO:0000315 MGI:MGI:3529594 2007-12-17 MGI GOREL:0001004(CL:0000235) creation-date=2007-12-17|modification-date=2007-12-17|comment=cell type macrophage ; CL:0000235|comment=evidence IB|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/95d8b3dc-0a45-4fed-bd51-7d1826bacebf + rdf:type owl:NamedIndividual , + ; + ; + ; + "2634.375"^^xsd:string ; + "381.25"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306" ; + "2023-09-28"^^xsd:string ; + "2015-10-23" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-7476-6306" ; + "2015-10-23" ; + "2015-10-23" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0070374 MGI:MGI:5299952|PMID:22033934 ECO:0000315 MGI:MGI:3529594 2015-10-23 MGI creation-date=2015-10-23|modification-date=2015-10-23|contributor-id=https://orcid.org/0000-0001-7476-6306" + ] . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-7476-6306" ; + "2015-10-23" ; + "2015-10-23" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0070374 MGI:MGI:5299952|PMID:22033934 ECO:0000315 MGI:MGI:3529594 2015-10-23 MGI creation-date=2015-10-23|modification-date=2015-10-23|contributor-id=https://orcid.org/0000-0001-7476-6306" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/957cd0b4-cac8-4deb-9d02-50800306eb0b + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-14" ; + "2007-12-14" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/96cf18d5-fa0a-41e6-b14e-a53866825306 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-17" ; + "PMID:15692051" ; + "2007-12-17" ; + "http://informatics.jax.org" ; + rdfs:comment "cell type macrophage ; CL:0000235" , + "evidence IB" . + + +### http://model.geneontology.org/MGI_MGI_2429397/960bbbe6-753c-41c2-b9ff-ecc018314491 + rdf:type owl:NamedIndividual , + ; + "75"^^xsd:string ; + "75"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-27"^^xsd:string ; + "2007-12-17" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/963182d7-787b-43dd-8537-63b605592357 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:2680581" ; + "https://orcid.org/0000-0001-9990-8331" ; + "2010-08-19" ; + "PMID:16949315" ; + "2010-08-19" ; + "http://informatics.jax.org" ; + rdfs:comment "CD11b-positive splenocytes used" , + "evidence ELISA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/966407d4-87ef-4a70-99f4-158dd4b3c586 + rdf:type owl:NamedIndividual , + ; + ; + ; + "10706.25"^^xsd:string ; + "687.5"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306"^^xsd:string , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2007-12-17" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-17" ; + "2007-12-17" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0006965 MGI:MGI:3528786|PMID:15692051 ECO:0000315 MGI:MGI:3529594 2007-12-17 MGI GOREL:0001004(EMAPA:32764) creation-date=2007-12-17|modification-date=2007-12-17|comment=anatomy ileum ; MA:0000339|comment=evidence RT-PCR|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-9990-8331" ; + "2007-12-17" ; + "2007-12-17" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0006965 MGI:MGI:3528786|PMID:15692051 ECO:0000315 MGI:MGI:3529594 2007-12-17 MGI GOREL:0001004(EMAPA:32764) creation-date=2007-12-17|modification-date=2007-12-17|comment=anatomy ileum ; MA:0000339|comment=evidence RT-PCR|contributor-id=https://orcid.org/0000-0001-9990-8331" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/9692e8aa-9a75-4f1b-be66-25251ab3abb7 + rdf:type owl:NamedIndividual , + ; + "UniProtKB:Q9HC29" ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2010-11-04" ; + "GO_REF:0000008" ; + "2009-08-27" ; + "http://informatics.jax.org" ; + rdfs:comment "ADD-IDO" , + "cell type permanent cell line ; CLO:0000019 293 [HEK293] ; ATCC:CRL-1573" , + "evidence NF-kappaB activation assay" , + "external ref PMID:12527755 IDA" . + + +### http://model.geneontology.org/MGI_MGI_2429397/9801fb74-0f84-4b55-b11d-ae125759112c + rdf:type owl:NamedIndividual , + ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2020-12-07" ; + "2007-12-20" ; + "2022-03-28" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/988cd9da-32e4-41a4-8565-e56c2a27364b + rdf:type owl:NamedIndividual , + ; + ; + ; + "16809.375"^^xsd:string ; + "381.25"^^xsd:string ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2023-09-28"^^xsd:string ; + "2009-08-27" ; + "2022-03-28" ; + "http://informatics.jax.org" . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2010-11-04" ; + "2009-08-27" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0032498 MGI:MGI:2154458|GO_REF:0000008 ECO:0000266 UniProtKB:Q9HC29 2010-11-04 MGI creation-date=2009-08-27|modification-date=2010-11-04|comment=cell type permanent cell line ; CLO:0000019 293 [HEK293] ; ATCC:CRL-1573|comment=evidence NF-kappaB activation assay|comment=external ref PMID:12527755 IDA|comment=ADD-IDO|contributor-id=https://orcid.org/0000-0001-9990-8331|contributor-id=https://orcid.org/0000-0001-7476-6306" + ] . + +[ rdf:type owl:Axiom ; + owl:annotatedSource ; + owl:annotatedProperty ; + owl:annotatedTarget ; + ; + "https://orcid.org/0000-0001-7476-6306" , + "https://orcid.org/0000-0001-9990-8331" ; + "2010-11-04" ; + "2009-08-27" ; + "2022-03-28" ; + "http://informatics.jax.org" ; + rdfs:comment "MGI:MGI:2429397 RO:0002264 GO:0032498 MGI:MGI:2154458|GO_REF:0000008 ECO:0000266 UniProtKB:Q9HC29 2010-11-04 MGI creation-date=2009-08-27|modification-date=2010-11-04|comment=cell type permanent cell line ; CLO:0000019 293 [HEK293] ; ATCC:CRL-1573|comment=evidence NF-kappaB activation assay|comment=external ref PMID:12527755 IDA|comment=ADD-IDO|contributor-id=https://orcid.org/0000-0001-9990-8331|contributor-id=https://orcid.org/0000-0001-7476-6306" + ] . + + +### http://model.geneontology.org/MGI_MGI_2429397/991777cf-0acb-4f70-a90e-4a5f7fbe3cb4 + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-7476-6306" ; + "2015-10-23" ; + "PMID:22033934" ; + "2015-10-23" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/99408e8b-ffea-40ef-a42e-3b195b0e642e + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:3529594" ; + "https://orcid.org/0000-0001-7476-6306" ; + "2015-10-23" ; + "PMID:22033934" ; + "2015-10-23" ; + "http://informatics.jax.org" . + + +### http://model.geneontology.org/MGI_MGI_2429397/996c9da8-56d3-4c29-aa8f-3792b805a48e + rdf:type owl:NamedIndividual , + ; + "MGI:MGI:2680581" ; + "https://orcid.org/0000-0001-9990-8331" , + "https://orcid.org/0000-0002-9796-7693" ; + "2008-02-15" ; + "PMID:15220916" ; + "2007-12-20" ; + "http://informatics.jax.org" ; + rdfs:comment "evidence ELISA" , + "splenocytes used" . + + +### Generated by the OWL API (version 4.5.15) https://github.com/owlcs/owlapi