diff --git a/.github/workflows/qc.yml b/.github/workflows/qc.yml index 399d220..20f6ab6 100644 --- a/.github/workflows/qc.yml +++ b/.github/workflows/qc.yml @@ -1,14 +1,14 @@ -# This is a basic workflow to help you get started with Actions +# Basic ODK workflow name: CI # Controls when the action will run. on: - # Triggers the workflow on push or pull request events but only for the master branch + # Triggers the workflow on push or pull request events but only for the main branch push: - branches: [ master ] + branches: [ main ] pull_request: - branches: [ master ] + branches: [ main ] # Allows you to run this workflow manually from the Actions tab workflow_dispatch: @@ -19,14 +19,15 @@ jobs: ontology_qc: # The type of runner that the job will run on runs-on: ubuntu-latest - container: obolibrary/odkfull:v1.3.1 + container: obolibrary/odkfull:v1.5 # Steps represent a sequence of tasks that will be executed as part of the job steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Run ontology QC checks env: - DEFAULT_BRANCH: master - run: cd src/ontology && make ROBOT_ENV='ROBOT_JAVA_ARGS=-Xmx6G' test IMP=false PAT=false + DEFAULT_BRANCH: main + run: cd src/ontology && make ROBOT_ENV='ROBOT_JAVA_ARGS=-Xmx6G' test IMP=false PAT=false MIR=false + diff --git a/src/ontology/Makefile b/src/ontology/Makefile index d55bb95..1d57e0c 100644 --- a/src/ontology/Makefile +++ b/src/ontology/Makefile @@ -1,7 +1,7 @@ # ---------------------------------------- # Makefile for wbls # Generated using ontology-development-kit -# ODK Version: v1.4.3 +# ODK Version: v1.5 # ---------------------------------------- # IMPORTANT: DO NOT EDIT THIS FILE. To override default make goals, use wbls.Makefile instead @@ -9,6 +9,9 @@ # ---------------------------------------- # More information: https://github.com/INCATools/ontology-development-kit/ +# Fingerprint of the configuration file when this Makefile was last generated +CONFIG_HASH= c7a3686200f67d225e72eee2ff274fd117815e4ef712c2c40f3bf9b81db8197b + # ---------------------------------------- # Standard Constants @@ -41,9 +44,9 @@ REPORT_FAIL_ON = None REPORT_LABEL = -l true REPORT_PROFILE_OPTS = OBO_FORMAT_OPTIONS = -SPARQL_VALIDATION_CHECKS = owldef-self-reference iri-range label-with-iri multiple-replaced_by -SPARQL_EXPORTS = basic-report class-count-by-prefix edges xrefs obsoletes synonyms -ODK_VERSION_MAKEFILE = v1.4.3 +SPARQL_VALIDATION_CHECKS = owldef-self-reference iri-range label-with-iri multiple-replaced_by dc-properties +SPARQL_EXPORTS = basic-report edges xrefs obsoletes synonyms +ODK_VERSION_MAKEFILE = v1.5 TODAY ?= $(shell date +%Y-%m-%d) OBODATE ?= $(shell date +'%d:%m:%Y %H:%M') @@ -58,6 +61,11 @@ FORMATS = $(sort owl obo json owl) FORMATS_INCL_TSV = $(sort $(FORMATS) tsv) RELEASE_ARTEFACTS = $(sort $(ONT)-base $(ONT)-full $(ONT)-simple ) +ifeq ($(ODK_DEBUG),yes) +ODK_DEBUG_FILE = debug.log +SHELL = $(SCRIPTSDIR)/run-command.sh +endif + # ---------------------------------------- # Top-level targets # ---------------------------------------- @@ -68,12 +76,16 @@ RELEASE_ARTEFACTS = $(sort $(ONT)-base $(ONT)-full $(ONT)-simple ) all: all_odk .PHONY: all_odk -all_odk: odkversion test all_assets +all_odk: odkversion config_check test custom_reports all_assets .PHONY: test test: odkversion reason_test sparql_test robot_reports $(REPORTDIR)/validate_profile_owl2dl_$(ONT).owl.txt echo "Finished running all tests successfully." +.PHONY: test +test_fast: + $(MAKE_FAST) test + .PHONY: release_diff release_diff: $(REPORTDIR)/release-diff.md @@ -84,13 +96,52 @@ reason_test: $(EDIT_PREPROCESSED) .PHONY: odkversion odkversion: - echo "ODK Makefile version: $(ODK_VERSION_MAKEFILE) (this is the version of the ODK with which this Makefile was generated, \ - not the version of the ODK you are running)" &&\ - echo "ROBOT version (ODK): " && $(ROBOT) --version + @echo "ODK Makefile $(ODK_VERSION_MAKEFILE)" + @odk-info --tools +.PHONY: config_check +config_check: + @if [ "$$(sha256sum $(ONT)-odk.yaml | cut -c1-64)" = "$(CONFIG_HASH)" ]; then \ + echo "Repository is up-to-date." ; else \ + echo "Your ODK configuration has changed since this Makefile was generated. You may need to run 'make update_repo'." ; fi + $(TMPDIR) $(REPORTDIR) $(MIRRORDIR) $(IMPORTDIR) $(COMPONENTSDIR) $(SUBSETDIR): mkdir -p $@ +# ---------------------------------------- +# ODK-managed ROBOT plugins +# ---------------------------------------- + +# Make sure ROBOT knows where to find plugins +export ROBOT_PLUGINS_DIRECTORY=$(TMPDIR)/plugins + +# Override this rule in wbls.Makefile to install custom plugins +.PHONY: custom_robot_plugins +custom_robot_plugins: + + +.PHONY: extra_robot_plugins +extra_robot_plugins: + + +# Install all ROBOT plugins to the runtime plugins directory +.PHONY: all_robot_plugins +all_robot_plugins: $(foreach plugin,$(notdir $(wildcard /tools/robot-plugins/*.jar)),$(ROBOT_PLUGINS_DIRECTORY)/$(plugin)) \ + $(foreach plugin,$(notdir $(wildcard ../../plugins/*.jar)),$(ROBOT_PLUGINS_DIRECTORY)/$(plugin)) \ + custom_robot_plugins extra_robot_plugins \ + +# Default rule to install plugins +$(ROBOT_PLUGINS_DIRECTORY)/%.jar: + @mkdir -p $(ROBOT_PLUGINS_DIRECTORY) + @if [ -f ../../plugins/$*.jar ]; then \ + ln ../../plugins/$*.jar $@ ; \ + elif [ -f /tools/robot-plugins/$*.jar ]; then \ + cp /tools/robot-plugins/$*.jar $@ ; \ + fi + +# Specific rules for supplementary plugins defined in configuration + + # ---------------------------------------- # Release assets # ---------------------------------------- @@ -180,10 +231,10 @@ validate_profile_%: $(REPORTDIR)/validate_profile_owl2dl_%.txt SPARQL_VALIDATION_QUERIES = $(foreach V,$(SPARQL_VALIDATION_CHECKS),$(SPARQLDIR)/$(V)-violation.sparql) -sparql_test: $(EDIT_PREPROCESSED) catalog-v001.xml | $(REPORTDIR) +sparql_test: $(EDIT_PREPROCESSED) | $(REPORTDIR) ifneq ($(SPARQL_VALIDATION_QUERIES),) - $(ROBOT) verify --catalog catalog-v001.xml -i $(EDIT_PREPROCESSED) --queries $(SPARQL_VALIDATION_QUERIES) -O $(REPORTDIR) + $(ROBOT) verify -i $(EDIT_PREPROCESSED) --queries $(SPARQL_VALIDATION_QUERIES) -O $(REPORTDIR) endif # ---------------------------------------- @@ -196,6 +247,10 @@ $(REPORTDIR)/$(SRC)-obo-report.tsv: $(SRCMERGED) | $(REPORTDIR) $(REPORTDIR)/%-obo-report.tsv: % | $(REPORTDIR) $(ROBOT) report -i $< $(REPORT_LABEL) $(REPORT_PROFILE_OPTS) --fail-on $(REPORT_FAIL_ON) --base-iri http://purl.obolibrary.org/obo/WBls_ --print 5 -o $@ +check_for_robot_updates: + echo "You are not using a custom profile, so you are getting the joy of the latest ROBOT report!" + + # ---------------------------------------- # Release assets # ---------------------------------------- @@ -212,7 +267,7 @@ RELEASE_ASSETS = \ $(SUBSET_FILES) .PHONY: all_assets -all_assets: $(ASSETS) +all_assets: $(ASSETS) check_rdfxml_assets .PHONY: show_assets show_assets: @@ -220,7 +275,7 @@ show_assets: du -sh $(ASSETS) check_rdfxml_%: % - @check-rdfxml $< + @check-rdfxml $< .PHONY: check_rdfxml_assets check_rdfxml_assets: $(foreach product,$(MAIN_PRODUCTS),check_rdfxml_$(product).owl) @@ -345,21 +400,25 @@ IMP=true # Global parameter to bypass import generation MIR=true # Global parameter to bypass mirror generation IMP_LARGE=true # Global parameter to bypass handling of large imports +ifeq ($(strip $(MIR)),true) ## ONTOLOGY: ro .PHONY: mirror-ro .PRECIOUS: $(MIRRORDIR)/ro.owl mirror-ro: | $(TMPDIR) - if [ $(MIR) = true ] && [ $(IMP) = true ]; then curl -L $(OBOBASE)/ro.owl --create-dirs -o $(MIRRORDIR)/ro.owl --retry 4 --max-time 200 &&\ - $(ROBOT) convert -i $(MIRRORDIR)/ro.owl -o $@.tmp.owl &&\ - mv $@.tmp.owl $(TMPDIR)/$@.owl; fi + curl -L $(OBOBASE)/ro.owl --create-dirs -o $(TMPDIR)/ro-download.owl --retry 4 --max-time 200 && \ + $(ROBOT) convert -i $(TMPDIR)/ro-download.owl -o $(TMPDIR)/$@.owl $(MIRRORDIR)/%.owl: mirror-% | $(MIRRORDIR) - if [ $(IMP) = true ] && [ $(MIR) = true ] && [ -f $(TMPDIR)/mirror-$*.owl ]; then if cmp -s $(TMPDIR)/mirror-$*.owl $@ ; then echo "Mirror identical, ignoring."; else echo "Mirrors different, updating." &&\ + if [ -f $(TMPDIR)/mirror-$*.owl ]; then if cmp -s $(TMPDIR)/mirror-$*.owl $@ ; then echo "Mirror identical, ignoring."; else echo "Mirrors different, updating." &&\ cp $(TMPDIR)/mirror-$*.owl $@; fi; fi +else # MIR=false +$(MIRRORDIR)/%.owl: + @echo "Not refreshing $@ because the mirrorring pipeline is disabled (MIR=$(MIR))." +endif @@ -448,9 +507,13 @@ ROBOT_RELEASE_IMPORT_MODE=$(ROBOT) merge --input $< # ROBOT pipeline that removes imports, then merges components. This is for release artefacts that start from "base" ROBOT_RELEASE_IMPORT_MODE_BASE=$(ROBOT) remove --input $< --select imports --trim false merge $(patsubst %, -i %, $(OTHER_SRC)) -# base: All the axioms as they are editted by the editors, excluding reasoning -$(ONT)-base.owl: $(EDIT_PREPROCESSED) $(OTHER_SRC) - $(ROBOT_RELEASE_IMPORT_MODE_BASE) \ +# base: A version of the ontology that does not include any externally imported axioms. +$(ONT)-base.owl: $(EDIT_PREPROCESSED) $(OTHER_SRC) $(IMPORT_FILES) + $(ROBOT_RELEASE_IMPORT_MODE) \ + reason --reasoner ELK --equivalent-classes-allowed asserted-only --exclude-tautologies structural --annotate-inferred-axioms False \ + relax \ + reduce -r ELK \ + remove --base-iri http://purl.obolibrary.org/obo/WBls_ --axioms external --preserve-structure false --trim false \ $(SHARED_ROBOT_COMMANDS) \ annotate --link-annotation http://purl.org/dc/elements/1.1/type http://purl.obolibrary.org/obo/IAO_8000001 \ --ontology-iri $(ONTBASE)/$@ $(ANNOTATE_ONTOLOGY_VERSION) \ @@ -467,7 +530,7 @@ $(ONT)-full.owl: $(EDIT_PREPROCESSED) $(OTHER_SRC) $(IMPORT_FILES) # remove --select imports --trim false $(ONT)-simple.owl: $(EDIT_PREPROCESSED) $(OTHER_SRC) $(SIMPLESEED) $(IMPORT_FILES) $(ROBOT_RELEASE_IMPORT_MODE) \ - reason --reasoner ELK --equivalent-classes-allowed asserted-only --exclude-tautologies structural \ + reason --reasoner ELK --equivalent-classes-allowed asserted-only --exclude-tautologies structural --annotate-inferred-axioms False \ relax \ remove --axioms equivalent \ relax \ @@ -528,13 +591,16 @@ update_repo: -# Note to future generations: prepending ./ is a safety measure to ensure that -# the environment does not malicously set `CLEANFILES` to `\`. +# Note to future generations: computing the real path relative to the +# current directory is a way to ensure we only clean up directories that +# are located below the current directory, regardless of the contents of +# the *DIR variables. .PHONY: clean clean: - [ -n "$(MIRRORDIR)" ] && [ $(MIRRORDIR) != "." ] && [ $(MIRRORDIR) != "/" ] && [ $(MIRRORDIR) != ".." ] && [ -d ./$(MIRRORDIR) ] && rm -rf ./$(MIRRORDIR)/* - [ -n "$(TMPDIR)" ] && [ $(TMPDIR) != "." ] && [ $(TMPDIR) != "/" ] && [ $(TMPDIR) != ".." ] && [ -d ./$(TMPDIR) ] && rm -rf ./$(TMPDIR)/* - [ -n "$(UPDATEREPODIR)" ] && [ $(UPDATEREPODIR) != "." ] && [ $(UPDATEREPODIR) != "/" ] && [ $(UPDATEREPODIR) != ".." ] && [ -d ./$(UPDATEREPODIR) ] && rm -rf ./$(UPDATEREPODIR)/* + for dir in $(MIRRORDIR) $(TMPDIR) $(UPDATEREPODIR) ; do \ + reldir=$$(realpath --relative-to=$$(pwd) $$dir) ; \ + case $$reldir in .*|"") ;; *) rm -rf $$reldir/* ;; esac \ + done rm -f $(CLEANFILES) .PHONY: help @@ -553,6 +619,7 @@ Core commands: * prepare_release_fast: Run the entire release pipeline without refreshing imports, recreating components or recompiling patterns. * update_repo: Update the ODK repository setup using the config file wbls-odk.yaml * test: Running all validation tests +* test_fast: Runs the test suite, but without updating imports or components * odkversion: Show the current version of the ODK Makefile and ROBOT. * clean: Delete all temporary files * help: Print ODK Usage information @@ -570,7 +637,7 @@ Imports management: Editor utilities: * validate_idranges: Make sure your ID ranges file is formatted correctly -* normalize_src: Load and safe your wbls-edit file after you to make sure its serialised correctly +* normalize_src: Load and save your wbls-edit file after you to make sure its serialised correctly * explain_unsat: If you have unsatisfiable classes, this command will create a markdown file (tmp/explain_unsat.md) which will explain all your unsatisfiable classes * validate-all-tsv: Check all your tsv files for possible problems in syntax. Use ALL_TSV_FILES variable to list files * validate-tsv: Check a tsv file for syntactic problems with tsvalid. Use TSV variable to pass filepath, e.g. make TSV=../my.tsv validate-tsv. diff --git a/src/ontology/imports/ro_import.owl b/src/ontology/imports/ro_import.owl index 3799187..817dc36 100644 --- a/src/ontology/imports/ro_import.owl +++ b/src/ontology/imports/ro_import.owl @@ -7,9 +7,9 @@ Prefix(rdfs:=) Ontology( - -Annotation( ) -Annotation(owl:versionInfo "2024-01-16") + +Annotation( ) +Annotation(owl:versionInfo "2024-04-09") Declaration(Class()) Declaration(Class()) @@ -379,6 +379,7 @@ AnnotationAssertion( ) AnnotationAssertion( ) AnnotationAssertion(rdfs:label "part of"@en) +AnnotationAssertion(rdfs:label "part of") AnnotationAssertion(rdfs:seeAlso ) AnnotationAssertion(rdfs:seeAlso ) AnnotationAssertion(rdfs:seeAlso "https://wiki.geneontology.org/Part_of"^^xsd:anyURI) @@ -405,6 +406,7 @@ AnnotationAssertion( ) AnnotationAssertion( ) AnnotationAssertion(rdfs:label "has part"@en) +AnnotationAssertion(rdfs:label "has part") SubObjectPropertyOf( ) TransitiveObjectProperty() @@ -460,6 +462,8 @@ AnnotationAssertion( "is bearer of"@en) AnnotationAssertion( ) AnnotationAssertion(rdfs:label "has characteristic"@en) +AnnotationAssertion(rdfs:label "has characteristic") +AnnotationAssertion(rdfs:seeAlso "https://github.com/oborel/obo-relations/pull/284") InverseFunctionalObjectProperty() ObjectPropertyRange( ) @@ -487,7 +491,9 @@ AnnotationAssertion( "has_participant"@en) AnnotationAssertion( "http://www.obofoundry.org/ro/#OBO_REL:has_participant") AnnotationAssertion(rdfs:label "has participant"@en) +AnnotationAssertion(rdfs:label "has participant") ObjectPropertyDomain( ) +ObjectPropertyDomain( ) ObjectPropertyRange( ) # Object Property: (function of) @@ -725,6 +731,7 @@ AnnotationAssertion( ) AnnotationAssertion(rdfs:comment "This is the transitive form of the develops from relation") AnnotationAssertion(rdfs:label "develops from"@en) +SubObjectPropertyOf( ) SubObjectPropertyOf( ) InverseObjectProperties( ) TransitiveObjectProperty() @@ -1016,6 +1023,7 @@ AnnotationAssertion( ) AnnotationAssertion( ) AnnotationAssertion(rdfs:label "enabled by"@en) +AnnotationAssertion(rdfs:label "enabled by") AnnotationAssertion(rdfs:seeAlso "https://wiki.geneontology.org/Enabled_by"^^xsd:anyURI) SubObjectPropertyOf( ) SubObjectPropertyOf( ) @@ -1652,6 +1660,7 @@ AnnotationAssertion( "An occurrent that has temporal proper parts and for some time t, p s-depends_on some material entity at t."@en) AnnotationAssertion(rdfs:label "process"@en) SubClassOf( ) +SubClassOf( ObjectAllValuesFrom( )) # Class: (disposition) @@ -1662,6 +1671,7 @@ DisjointClasses( (realizable entity) AnnotationAssertion( "A specifically dependent continuant that inheres in continuant entities and are not exhibited in full at every time in which it inheres in an entity or group of entities. The exhibition or actualization of a realizable entity is a particular manifestation, functioning or process that occurs under certain circumstances."@en) +AnnotationAssertion(rdfs:label "realizable"@en) AnnotationAssertion(rdfs:label "realizable entity"@en) SubClassOf( ) SubClassOf( ObjectAllValuesFrom( )) @@ -1673,13 +1683,17 @@ AnnotationAssertion(rdfs:label "qua SubClassOf( ) SubClassOf( ObjectAllValuesFrom( )) -# Class: (specifically dependent continuant) +# Class: (characteristic) AnnotationAssertion( "b is a specifically dependent continuant = Def. b is a continuant & there is some independent continuant c which is not a spatial region and which is such that b s-depends_on c at every time t during the course of b’s existence. (axiom label in BFO2 Reference: [050-003])"@en) AnnotationAssertion(rdfs:comment "A continuant that inheres in or is borne by other entities. Every instance of A requires some specific instance of B which must always be the same."@en) +AnnotationAssertion(rdfs:label "characteristic"@en) AnnotationAssertion(rdfs:label "specifically dependent continuant"@en) +AnnotationAssertion(rdfs:seeAlso "https://github.com/OBOFoundry/COB/issues/65") +AnnotationAssertion(rdfs:seeAlso "https://github.com/oborel/obo-relations/pull/284") SubClassOf( ) SubClassOf( ObjectAllValuesFrom( )) +SubClassOf( ObjectAllValuesFrom( )) # Class: (role) @@ -1704,11 +1718,16 @@ AnnotationAssertion(Annotation( "molecular function") AnnotationAssertion( "GO:0003674") AnnotationAssertion(rdfs:comment "Note that, in addition to forming the root of the molecular function ontology, this term is recommended for use for the annotation of gene products whose molecular function is unknown. When this term is used for annotation, it indicates that no information was available about the molecular function of the gene product annotated as of the date the annotation was made; the evidence code 'no data' (ND), is used to indicate this. Despite its name, this is not a type of 'function' in the sense typically defined by upper ontologies such as Basic Formal Ontology (BFO). It is instead a BFO:process carried out by a single gene product or complex.") +AnnotationAssertion(rdfs:comment "This is the same as GO molecular function") +AnnotationAssertion(rdfs:label "gene product or complex activity"@en) AnnotationAssertion(rdfs:label "molecular_function") +SubClassOf( ) +DisjointClasses( ) # Class: (biological_process) AnnotationAssertion(Annotation( "GOC:pdt") "A biological process is the execution of a genetically-encoded biological module or program. It consists of all the steps required to achieve the specific biological objective of the module. A biological process is accomplished by a particular set of molecular functions carried out by specific gene products (or macromolecular complexes), often in a highly regulated manner and in a particular temporal sequence.") +AnnotationAssertion( "A process that emerges from two or more causally-connected macromolecular activities and has evolved to achieve a biological objective.") AnnotationAssertion( "jl") AnnotationAssertion( "2012-09-19T15:05:24Z") AnnotationAssertion( "Wikipedia:Biological_process") @@ -1717,8 +1736,12 @@ AnnotationAssertion( "single organism process") AnnotationAssertion( "single-organism process") AnnotationAssertion( "GO:0008150") +AnnotationAssertion(rdfs:comment "A biological process is an evolved process") AnnotationAssertion(rdfs:comment "Note that, in addition to forming the root of the biological process ontology, this term is recommended for use for the annotation of gene products whose biological process is unknown. When this term is used for annotation, it indicates that no information was available about the biological process of the gene product annotated as of the date the annotation was made; the evidence code 'no data' (ND), is used to indicate this.") +AnnotationAssertion(rdfs:label "biological process"@en) AnnotationAssertion(rdfs:label "biological_process") +SubClassOf( ) +SubClassOf( ObjectSomeValuesFrom( )) # Class: (kinase activity) @@ -1758,11 +1781,11 @@ AnnotationAssertion( ) AnnotationAssertion( "AAO:0010841") AnnotationAssertion( "AEO:0000000") +AnnotationAssertion( "BFO:0000004") AnnotationAssertion( "BILA:0000000") AnnotationAssertion( "BIRNLEX:6") AnnotationAssertion( "CARO:0000000") AnnotationAssertion( "EHDAA2:0002229") -AnnotationAssertion( "FBbt:10000000") AnnotationAssertion( "FMA:62955") AnnotationAssertion( "HAO:0000000") AnnotationAssertion( "MA:0000001") @@ -1903,30 +1926,30 @@ SubObjectPropertyOf(ObjectPropertyChain( ) ) SubObjectPropertyOf(ObjectPropertyChain( ) ) SubObjectPropertyOf(ObjectPropertyChain( ) ) -DLSafeRule(Body(ObjectPropertyAtom( Variable() Variable()) ClassAtom( Variable()) ClassAtom( Variable()))Head(ObjectPropertyAtom( Variable() Variable()))) +DLSafeRule(Body(ObjectPropertyAtom( Variable() Variable()) ClassAtom( Variable()) ClassAtom( Variable()))Head(ObjectPropertyAtom( Variable() Variable()))) DLSafeRule(Body(ClassAtom( Variable()) ObjectPropertyAtom( Variable() Variable()))Head(ObjectPropertyAtom( Variable() Variable()))) DLSafeRule(Body(ClassAtom( Variable()) ObjectPropertyAtom( Variable() Variable()))Head(ObjectPropertyAtom( Variable() Variable()))) DLSafeRule(Body(ClassAtom( Variable()) ObjectPropertyAtom( Variable() Variable()))Head(ObjectPropertyAtom( Variable() Variable()))) DLSafeRule(Body(ClassAtom( Variable()) ObjectPropertyAtom( Variable() Variable()))Head(ObjectPropertyAtom( Variable() Variable()))) DLSafeRule(Annotation( "true"^^xsd:boolean) Annotation(rdfs:comment "MF(X)-directly_regulates->MF(Y)-enabled_by->GP(Z) => MF(Y)-has_input->GP(Y) e.g. if 'protein kinase activity'(X) directly_regulates 'protein binding activity (Y)and this is enabled by GP(Z) then X has_input Z") Annotation(rdfs:label "infer input from direct reg") Body(ObjectPropertyAtom( Variable() Variable()) ObjectPropertyAtom( Variable() Variable()) ClassAtom( Variable()) ClassAtom( Variable()))Head(ObjectPropertyAtom( Variable() Variable()))) DLSafeRule(Annotation(rdfs:comment "GP(X)-enables->MF(Y)-has_part->MF(Z) => GP(X) enables MF(Z), -e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase coupled transporter activity' has_part 'ATPase activity' then GP(X) enables 'ATPase activity'") Annotation(rdfs:label "enabling an MF enables its parts") Body(ClassAtom( Variable()) ObjectPropertyAtom( Variable() Variable()) ObjectPropertyAtom( Variable() Variable()))Head(ObjectPropertyAtom( Variable() Variable()))) -DLSafeRule(Annotation( "true"^^xsd:boolean) Annotation(rdfs:comment "GP(X)-enables->MF(Y)-part_of->BP(Z) => GP(X) involved_in BP(Z) e.g. if X enables 'protein kinase activity' and Y 'part of' 'signal tranduction' then X involved in 'signal transduction'") Annotation(rdfs:label "involved in BP") Body(ClassAtom( Variable()) ObjectPropertyAtom( Variable() Variable()) ObjectPropertyAtom( Variable() Variable()))Head(ObjectPropertyAtom( Variable() Variable()))) -DLSafeRule(Body(ObjectPropertyAtom( Variable() Variable()) ClassAtom( Variable()) ObjectPropertyAtom( Variable() Variable()) ObjectPropertyAtom( Variable() Variable()))Head(ObjectPropertyAtom( Variable() Variable()))) -DLSafeRule(Annotation(rdfs:comment "If a molecular function (X) has a regulatory subfunction, then any gene product which is an input to that subfunction has an activity that directly_regulates X. Note: this is intended for cases where the regaultory subfunction is protein binding, so it could be tightened with an additional clause to specify this.") Annotation(rdfs:label "inferring direct reg edge from input to regulatory subfunction") Body(ObjectPropertyAtom( Variable() Variable()) ObjectPropertyAtom( Variable() Variable()) ObjectPropertyAtom( Variable() Variable()))Head(ObjectPropertyAtom( Variable() Variable()))) -DLSafeRule(Annotation(rdfs:label "inferring direct neg reg edge from input to regulatory subfunction") Body(ObjectPropertyAtom( Variable() Variable()) ObjectPropertyAtom( Variable() Variable()) ObjectPropertyAtom( Variable() Variable()))Head(ObjectPropertyAtom( Variable() Variable()))) -DLSafeRule(Annotation(rdfs:label "inferring direct positive reg edge from input to regulatory subfunction") Body(ObjectPropertyAtom( Variable() Variable()) ObjectPropertyAtom( Variable() Variable()) ObjectPropertyAtom( Variable() Variable()))Head(ObjectPropertyAtom( Variable() Variable()))) -DLSafeRule(Annotation(rdfs:label "effector input is compound function input") Body(ObjectPropertyAtom( Variable() Variable()) ObjectPropertyAtom( Variable() Variable()))Head(ObjectPropertyAtom( Variable() Variable()))) -DLSafeRule(Annotation(rdfs:label "Input of effector is input of its parent MF") Body(ObjectPropertyAtom( Variable() Variable()) ObjectPropertyAtom( Variable() Variable()))Head(ObjectPropertyAtom( Variable() Variable()))) -DLSafeRule(Annotation(rdfs:comment "if effector directly regulates X, its parent MF directly regulates X") Body(ObjectPropertyAtom( Variable() Variable()) ObjectPropertyAtom( Variable() Variable()))Head(ObjectPropertyAtom( Variable() Variable()))) -DLSafeRule(Annotation(rdfs:comment "if effector directly positively regulates X, its parent MF directly positively regulates X") Body(ObjectPropertyAtom( Variable() Variable()) ObjectPropertyAtom( Variable() Variable()))Head(ObjectPropertyAtom( Variable() Variable()))) -DLSafeRule(Annotation(rdfs:label "if effector directly negatively regulates X, its parent MF directly negatively regulates X") Body(ObjectPropertyAtom( Variable() Variable()) ObjectPropertyAtom( Variable() Variable()))Head(ObjectPropertyAtom( Variable() Variable()))) -DLSafeRule(Annotation(rdfs:label "'causally downstream of' and 'overlaps' should be disjoint properties (a SWRL rule is required because these are non-simple properties).") Body(ObjectPropertyAtom( Variable() Variable()) ObjectPropertyAtom( Variable() Variable()))Head(ClassAtom(owl:Nothing Variable()) ClassAtom(owl:Nothing Variable()))) -DLSafeRule(Annotation(rdfs:label "'causally upstream of' and 'overlaps' should be disjoint properties (a SWRL rule is required because these are non-simple properties).") Body(ObjectPropertyAtom( Variable() Variable()) ObjectPropertyAtom( Variable() Variable()))Head(ClassAtom(owl:Nothing Variable()) ClassAtom(owl:Nothing Variable()))) +e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase coupled transporter activity' has_part 'ATPase activity' then GP(X) enables 'ATPase activity'") Annotation(rdfs:label "enabling an MF enables its parts") Body(ClassAtom( Variable()) ObjectPropertyAtom( Variable() Variable()) ObjectPropertyAtom( Variable() Variable()))Head(ObjectPropertyAtom( Variable() Variable()))) +DLSafeRule(Annotation( "true"^^xsd:boolean) Annotation(rdfs:comment "GP(X)-enables->MF(Y)-part_of->BP(Z) => GP(X) involved_in BP(Z) e.g. if X enables 'protein kinase activity' and Y 'part of' 'signal tranduction' then X involved in 'signal transduction'") Annotation(rdfs:label "involved in BP") Body(ClassAtom( Variable()) ObjectPropertyAtom( Variable() Variable()) ObjectPropertyAtom( Variable() Variable()))Head(ObjectPropertyAtom( Variable() Variable()))) +DLSafeRule(Body(ObjectPropertyAtom( Variable() Variable()) ClassAtom( Variable()) ObjectPropertyAtom( Variable() Variable()) ObjectPropertyAtom( Variable() Variable()))Head(ObjectPropertyAtom( Variable() Variable()))) +DLSafeRule(Annotation(rdfs:comment "If a molecular function (X) has a regulatory subfunction, then any gene product which is an input to that subfunction has an activity that directly_regulates X. Note: this is intended for cases where the regaultory subfunction is protein binding, so it could be tightened with an additional clause to specify this.") Annotation(rdfs:label "inferring direct reg edge from input to regulatory subfunction") Body(ObjectPropertyAtom( Variable() Variable()) ObjectPropertyAtom( Variable() Variable()) ObjectPropertyAtom( Variable() Variable()))Head(ObjectPropertyAtom( Variable() Variable()))) +DLSafeRule(Annotation(rdfs:label "inferring direct neg reg edge from input to regulatory subfunction") Body(ObjectPropertyAtom( Variable() Variable()) ObjectPropertyAtom( Variable() Variable()) ObjectPropertyAtom( Variable() Variable()))Head(ObjectPropertyAtom( Variable() Variable()))) +DLSafeRule(Annotation(rdfs:label "inferring direct positive reg edge from input to regulatory subfunction") Body(ObjectPropertyAtom( Variable() Variable()) ObjectPropertyAtom( Variable() Variable()) ObjectPropertyAtom( Variable() Variable()))Head(ObjectPropertyAtom( Variable() Variable()))) +DLSafeRule(Annotation(rdfs:label "effector input is compound function input") Body(ObjectPropertyAtom( Variable() Variable()) ObjectPropertyAtom( Variable() Variable()))Head(ObjectPropertyAtom( Variable() Variable()))) +DLSafeRule(Annotation(rdfs:label "Input of effector is input of its parent MF") Body(ObjectPropertyAtom( Variable() Variable()) ObjectPropertyAtom( Variable() Variable()))Head(ObjectPropertyAtom( Variable() Variable()))) +DLSafeRule(Annotation(rdfs:comment "if effector directly regulates X, its parent MF directly regulates X") Body(ObjectPropertyAtom( Variable() Variable()) ObjectPropertyAtom( Variable() Variable()))Head(ObjectPropertyAtom( Variable() Variable()))) +DLSafeRule(Annotation(rdfs:comment "if effector directly positively regulates X, its parent MF directly positively regulates X") Body(ObjectPropertyAtom( Variable() Variable()) ObjectPropertyAtom( Variable() Variable()))Head(ObjectPropertyAtom( Variable() Variable()))) +DLSafeRule(Annotation(rdfs:label "if effector directly negatively regulates X, its parent MF directly negatively regulates X") Body(ObjectPropertyAtom( Variable() Variable()) ObjectPropertyAtom( Variable() Variable()))Head(ObjectPropertyAtom( Variable() Variable()))) +DLSafeRule(Annotation(rdfs:label "'causally downstream of' and 'overlaps' should be disjoint properties (a SWRL rule is required because these are non-simple properties).") Body(ObjectPropertyAtom( Variable() Variable()) ObjectPropertyAtom( Variable() Variable()))Head(ClassAtom(owl:Nothing Variable()) ClassAtom(owl:Nothing Variable()))) +DLSafeRule(Annotation(rdfs:label "'causally upstream of' and 'overlaps' should be disjoint properties (a SWRL rule is required because these are non-simple properties).") Body(ObjectPropertyAtom( Variable() Variable()) ObjectPropertyAtom( Variable() Variable()))Head(ClassAtom(owl:Nothing Variable()) ClassAtom(owl:Nothing Variable()))) DLSafeRule(Body(ObjectPropertyAtom( Variable() Variable()) ObjectPropertyAtom( Variable() Variable()))Head(ObjectPropertyAtom( Variable() Variable()))) -DLSafeRule(Body(ObjectPropertyAtom( Variable() Variable()) ObjectPropertyAtom( Variable() Variable()))Head(ObjectPropertyAtom( Variable() Variable()))) -DLSafeRule(Body(ObjectPropertyAtom( Variable() Variable()) ObjectPropertyAtom( Variable() Variable()))Head(ObjectPropertyAtom( Variable() Variable()))) +DLSafeRule(Body(ObjectPropertyAtom( Variable() Variable()) ObjectPropertyAtom( Variable() Variable()))Head(ObjectPropertyAtom( Variable() Variable()))) DLSafeRule(Body(ObjectPropertyAtom( Variable() Variable()) ObjectPropertyAtom( Variable() Variable()))Head(ObjectPropertyAtom( Variable() Variable()))) +DLSafeRule(Body(ObjectPropertyAtom( Variable() Variable()) ObjectPropertyAtom( Variable() Variable()))Head(ObjectPropertyAtom( Variable() Variable()))) DLSafeRule(Body(ObjectPropertyAtom( Variable() Variable()) ObjectPropertyAtom( Variable() Variable()))Head(ObjectPropertyAtom( Variable() Variable()))) DLSafeRule(Body(ObjectPropertyAtom( Variable() Variable()) ObjectPropertyAtom( Variable() Variable()))Head(ObjectPropertyAtom( Variable() Variable()))) AnnotationAssertion(Annotation(rdfs:comment "This is an experimental annotation") rdfs:isDefinedBy "is defined by") diff --git a/src/ontology/reports/basic-report.tsv b/src/ontology/reports/basic-report.tsv index 4c7408c..d6228c1 100644 --- a/src/ontology/reports/basic-report.tsv +++ b/src/ontology/reports/basic-report.tsv @@ -1,2 +1,798 @@ ?cls ?def ?xrefs - + "The time period encompassing the 545th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 147th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "L4 larvae that develop from L3 larvae in the mammalian host." + "The time period encompassing the 221st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 499th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 475th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 280th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 482nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 530th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 650th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "A larval stage of some cestodes, including Hymenolepis sp. The cysticercoid is a type of cyst that is found in free form as well as being tissue-enclosed." + "The time period encompassing the 212nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "A C. elegans life stage that occurs during the 3-fold embryo life stage" + "The time period encompassing the 52nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 477th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 469th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "At 20 Centigrade: 7-8 days after L4-adult molt. 10-11 days after first cleavage." + "The time period encompassing the 465th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 273rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "A C. elegans life stage that occurs during the larval life stage" + "The time period encompassing the 474th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 138th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "A special second stage larva with altered physiology and developmental potential that leads to formation of dauer larva. At 25 Centigrade, it ranges 25.5-32.5 hours after fertilization, 11.5-18.5 hours after hatch." + "The time period encompassing the 540th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 219th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 197th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 211st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 265th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 232nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 460th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The first stage larva of nematodes." + "A realizable entity the manifestation of which brings about some result or end that is not essential to a continuant in virtue of the kind of thing that it is but that can be served or participated in by that kind of continuant in some kinds of natural, social or institutional contexts."@en + "The time period encompassing the 39th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "Derived from the host after reintroduction by vector feeding or manual inoculation; these piL3 samples are often-should be conditioned by age (hours or days post-infection)." + "The third sub-stage of the L4 larva. All vulval cells complete migration. vulA, vulC, and vulD undergo cell fusion. The vulval lumen has widened and a prominent kink has formed between vulC and vulD. The uterine lumen has not started to form. At 20 Centigrade: 36.8 hours after hatching, 2.8 hours from the L3-to-L4 molt." + "The time period encompassing the 222nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 850th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 483rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + + "The time period encompassing the 327th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 315th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 148th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The stage right after an animal recovered from dauer but has not started transformation to L4 larva yet." + "The time period encompassing the 371st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 140th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 201st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 68th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 118th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 44th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 13rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 550th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 487th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 218th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The fourth stage larva. Should be conditioned by days post infection; as moulting is not synchronous, some samples are defined as L3/L4, indicating a mix of individuals as late L3, moulting, and early L4." + "The time period encompassing the 36th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 164th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 525th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 67th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The stage that begins when a C.elegans individual is fully-developed and has reached maturity." + "The stage during L4-adult molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old." + "A C. elegans life stage that occurs during the bean embryo life stage" + "A dormant Digenean (fluke) life stage which occurs after cercariae are released from the intermediate snail host and encyst on vegetation until they are ingested by the definitive host." + "The time period encompassing the 97th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 113rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 445th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 457th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "At 20 Centigrade: 24-48 hours after L4-adult molt. 4-5 days after first cleavage." + "The time period encompassing the 121st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 369th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The sixth sub-stage of the L4 larva. The side of the vulval lumen between vulC and vulD forms a smooth curve. At 20 Centigrade: 40.4 hours after hatching, 6.4 hours from the L3-to-L4 molt." + "The time period encompassing the 186th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 307th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "At 20 Centigrade: 96-120 hours after L4-adult molt. 7-8 days after first cleavage." + "The time period encompassing the 128th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 62nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 294th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The seventh sub-stage of the L4 larva. 'Fingers' between vulB2 and vulC are pointed ventrally. At 20 Centigrade: 41.5 hours after hatching, 7.5 hours from the L3-to-L4 molt." + "The time period encompassing the 112nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 178th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The stage after an male animal is fully-developed and reaches maturity." + "The time period encompassing the 365th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 455th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 103rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 95th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The stage during L3-L4 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old." + "The time period encompassing the 264th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 288th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 467th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 398th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The stage during L2-L3 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old." + "A Brugia microfilaria life stage in which larvae are surrounded by a membrane thought to be derived from the vitelline membrane, hence \"sheathed\"." + "A developmental life stage of the nematode Caenorhabditis elegans that occurs from egg hatching until adulthood." + "The time period encompassing the 202nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The stage that begins after hatching and ends when the nematode becomes adult." + "The time period encompassing the 256th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 99th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 321st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 238th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 437th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 425th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The egg stage of the Platyhelminthes life cycle. The stage ends upon hatching." + "Microfilaria larvae found in nodules and ulcers." + "The time period encompassing the 355th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 41st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 720th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 410th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 537th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 332nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 500th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "C. elegans life stage classified by the number of cells in the organism." + "The time period encompassing the 240th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 187th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 30th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 12nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 383rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 481st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 161st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 180th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The fifth sub-stage of the L4 larva. utse is visible as a thin layer separating the vulval and uterine lumens. 'Fingers' are formed at the sides of the vulva next to vulB1 and vulB2. The uterine lumen is fully distended. At 20 Centigrade: 39.0 hours after hatching, 5.0 hours from the L3-to-L4 molt." + "The time period encompassing the 527th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The C. elegans life stage spanning 120-135 min after first cleavage at 20 Centigrade. Contains 51 cells." + "The time period encompassing the 350th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "Very young adult hermaphrodites that do not have eggs in the uterus yet. At 20 Centigrade: 0 - 13 hours after L4-adult molt. 3 days after first cleaveage." + "All C. elegans development stages, including embryo, larva and adult stage." + "The time period encompassing the 108th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 498th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 250th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 373rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The stage during L2d-dauer molt, after the brief lethargus period, when an animal sheds off old cuticle." + "The time period encompassing the 102nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 359th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 215th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "Catalysis of the transfer of a phosphate group, usually from ATP, to a substrate molecule." "Reactome:R-HSA-6788855 Reactome:R-HSA-6788867" + "The time period encompassing the 272nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 447th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "A C. elegans life stage that occurs during the enclosing embryo life stage" + "The time period encompassing the 259th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "A C. elegans life stage that occurs during the 2-fold embryo life stage" + "The time period encompassing the 435th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 388th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 203rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 329th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The first stage larva." + "A C. elegans L4 larval life stage that occurs after the animal has recovered from the dauer diapause." + "The time period encompassing the 209th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 430th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 382nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 367th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 235th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 405th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 417th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The C. elegans life stage spanning 210-350min after first cleavage at 20 Centigrade. Proliferate from 421 cells to 560 cells. The stage before the fast cleavage of cells finishes." + "The time period encompassing the 146th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 312nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "Adult hermaphrodites continuously laying fertilized eggs. Hermaphrodite in egg laying stages--usually up to 4/5 days after L4-adult molt at Centigrade. From the first fertilized egg is laid, till all sperms are used. At 20 Centigrade: 13 hours after L4-adult molt until about 5.4 days after the L4-adult molt. 3-8.4 days after first cleavage." + "The time period encompassing the 287th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 155th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "A C. elegans life stage that occurs during the fully-elongating embryo life stage" + "The second stage larva. At 25 Centigrade, it ranges 25.5-32.5 hours after fertilization, 11.5-18.5 hours after hatch." + "The time period encompassing the 258th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 91st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 471st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 372nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 547th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "L2 larvae that develops from the L1 larvae in the arthropod vector." + "The time period encompassing the 415th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 427th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 394th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "At 20 Centigrade: 20-21 days after L4-adult molt. 23-24 days after first cleavage." + "OBSOLETE. An adult life-stage of a soil-transmitted nematode such as Trichuris sp. in which the anterior portion (whip-like end) is threaded into the tissue mucosa and the posterior of the male and female worms emerges free into the intestinal lumen to facilitate feeding, mating, and subsequent egg deposition." + "The time period encompassing the 520th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The C. elegans life stage spanning 420-460min after first cleavage at 20 Centigrade. Cell number remains at ~560 cells, with some new cells generated and some cells go through programmed cell death. The shape of embryo is elongated and fold back 50%. A stage between comma embryo and 2-fold embryo." + "P4 and M cells have finished migrating. Contains 190 cells." + "The time period encompassing the 223rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 53rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 397th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 18th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 156th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 347th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 510th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 335th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 84th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 22nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 190th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "At 20 Centigrade: 11-15 days after L4-adult molt. 14-18 days after first cleavage." + "The stage during L2-L3 molt, after the brief lethargus period, when an animal sheds off old cuticle." + "The time period encompassing the 165th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 301st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The C. elegans life stage spanning 290-350min after first cleavage at 20 Centigrade. Proliferate from 421 cells to 560 cells. The stage when embryo just finished gastrulation and is enclosing." + "A developmental stage of a Digenean (fluke)." + "The time period encompassing the 396th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 70th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 313rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The stage when an animal shifts from L1 larva to L2 larva. It includes the synthesis of new cuticle, cease of phrayngeal pumping during a lethargus stage, and the shed off of old cuticle." + "The second stage larva of nematodes." + "The time period encompassing the 305th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 309th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "At 20 Centigrade: 5-6 days after L4-adult molt. 8-9 days after first cleavage." + "The time period encompassing the 254th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "At 20 Centigrade: 7-10 days after L4-adult molt. 10-13 days after first cleavage." + "The time period encompassing the 105th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 130th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The stage during postdauer-L4 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old." + "The time period encompassing the 92nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "A C. elegans life stage that occurs during the adult life stage" + "The time period encompassing the 432nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 126th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 85th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 300th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 195th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 157th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The stage when an animal shifts from L3 larva to L4 larva. It includes the synthesis of new cuticle, cease of phrayngeal pumping during a lethargus stage, and the shed off of old cuticle." + "The time period encompassing the 451st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 422nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "A tailless cercarium of Schistosoma sp, 3 hours post-infection by skin penetration of the definitive host." "OPL:0000017" + "The time period encompassing the 496th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 407th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 286th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The stage when an animal shifts from L2d larva to L3 larva. It includes the synthesis of new cuticle, cease of phrayngeal pumping during a lethargus stage, and the shed off of old cuticle." + "The time period encompassing the 274th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The larval stages of a tapeworm, beginning with the metamorphosis of the oncosphere and ending with the first evidence of sexuality in the adult worm. Includes the procercoid and plerocercoid stages of pseudophyllid cestodes, and the cysticercus, cysticercoid, coenurus, and hydatid stages of cyclophyllidean cestodes." + "The time period encompassing the 5th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 390th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 220th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 484th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 409th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 306th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 81st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 323rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 11st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 479th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 37th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The C. elegans life stage spanning 390-420min after first cleavage at 20 Centigrade. Cell number remains at ~560 cells, with some new cells generated and some cells go through programmed cell death. The shape of embryo looks like a comma. A stage between bean embryo and 1.5-fold embryo." + "A Digenean (fluke) life stage that occurs in the definitive host. The stage begins when the metacercariae excyst in the intestine of the host, and continues as the NEJs migrate through the liver parenchyma where they increase in size to juvenile flukes and then to mature adults." + "The time period encompassing the 136th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 532nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The C. elegans life stage spanning 0-20min after first cleavage at 20 Centigrade. Contains 2 cells." + "Any developmental stage in a nematode, including embryo, larva and adult stage." + "Proliferates from 1 to 100 cells. As the Brugia female reproductive tract is long (>10 cm), it is possible to dissect it and select early embryos just by isolating early parts of the post-spermatheca uterus." + "The time period encompassing the 75th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "Adult female that has developed from L4 larvae in the mammalian host." + "The first stage larva. At 25 Centigrade, it ranges 14-25.5 hours after fertilization, 0-11.5 hours after hatch." + "The fourth sub-stage of the L4 larva. vulFs have separated and the apex of the lumen is flat and capped by the anchor cell. The uterine lumen starts to form. At 20 Centigrade: 38.1 hours after hatching, 4.1 hours from the L3-to-L4 molt." + "Strongyloides L1 larval stage that is the progeny of a parasitic adult female as a part of a of parasitic life-cycle." + "The time period encompassing the 266th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 134th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "A C. elegans life stage that occurs during the 1.5-fold embryo life stage" + "The time period encompassing the 237th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 507th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "From Lima bean to hatching." + "The stage when an animal shifts from post dauer stage to L4 larva. It includes the synthesis of new cuticle, cease of phrayngeal pumping during a lethargus stage, and the shed off of old cuticle." + "Adult hermaphrodites that contain no more sperm, thus stop egg-laying, but still alive. At 20 Centigrade: 5.4 days after L4-adult molt until the death. 8.4 - 13.2 (average wild type life span) days after first cleavage." + "At 20 Centigrade: 8-9 days after L4-adult molt. 11-12 days after first cleavage." + "The time period encompassing the 296th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 378th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 205th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 330th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 79th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 368th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The stage when an animal shifts from L1 larva to L2d larva. It includes the synthesis of new cuticle, cease of phrayngeal pumping during a lethargus stage, and the shed off of old cuticle." + "A developmental life stage of the nematode Caenorhabditis elegans that occurs in an egg (oocyte), before fertilization by sperm." + "The third stage larva." + "The time period encompassing the 423rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 31st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 472nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 515th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "A C. elegans life stage that occurs during the L1 larval life stage" + "The time period encompassing the 154th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 473rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 400th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "A microfilaria life stage in which larvae are not sheathed by a membrane thought to be derived from the vitelline membrane." + "The time period encompassing the 65th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 227th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 570th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 438th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "b is an independent continuant = Def. b is a continuant which is such that there is no c and no t such that b s-depends_on c at t. (axiom label in BFO2 Reference: [017-002])"@en + "The time period encompassing the 57th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 414th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 517th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 177th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 20th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The fourth stage larva. At 25 Centigrade, it ranges 40-49.5 hours after fertilization, 26-35.5 hours after hatch." + "The time period encompassing the 459th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 421st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 406th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The stage during L3-L4 molt, after the brief lethargus period, when an animal sheds off old cuticle." + "The time period encompassing the 780th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "Onchocerca post-embryonic life stage." + "The time period encompassing the 101st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 55th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 2nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 196th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 297th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 170th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 524th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 374th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 16th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 345th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 519th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "At 20 Centigrade: 14-15 days after L4-adult molt. 17-18 days after first cleavage." + "The time period encompassing the 486th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "A developemental life stage in a nematode that occurs from egg hatching until death." + "The time period encompassing the 411st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The ninth sub-stage of the L4 larva. The vulval lumen is partially collapsed. At 20 Centigrade: 42.5 hours after hatching, 8.5 hours from the L3-to-L4 molt." + "An infective larval stage of cestodes which develops from the hydatid cyst. The stage begins when a clustering of cells emerge from the germinal layer of hydatid cysts. The buds elongate and the cells at their bases seem to diminish in number. Very early on a furrow appears in the elongated buds, delimiting anterior (scolex) and caudal (body) regions. Hooks are the first fully-differentiated structures formed at the apical region of the nascent scolex. A cone can later be seen at the center of the hooks, the body is expanded and a structured neck is evident between the scolex and the body. During protoscolex development this parasitic form remains attached to the germinative layer through a stalk. When fully differentiated, the stalk is cut off and the infective protoscolex is now free in the hydatid fluid. This stage ends when the protoscolex attaches, via the scolex, to the host intestinal tissue and begins to develop into a adult." + "The time period encompassing the 213rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 399th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 236th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 51st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "OSBSOLETE: A set of life stages of the nematode Caenorhabditis elegans" + "The time period encompassing the 204th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 77th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 228th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 194th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "A six-hooked larva, called the hexcanth, enclosed by one or two embryonic envelopes. This stage invades the first (or sole) intermediate host where it develops into a bladder larva, such as a hydatid cyst." + "The time period encompassing the 45th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 290th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 364th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 492nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 299th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "A larval stage of cestodes characterized by internal (and often external) chambers lined by germinal epithelium. The inner germinal layer of hydatid cysts is cellular and the protoscolex develops from those cells." + "A C. elegans life stage that occurs during the proliferating embryo life stage" + "A C. elegans life stage that occurs during the L2 larval life stage" + "Free-swimming larval stage. Once the egg is released into environment, the miracidium hatches immediately and starts swimming in search of an intermediate host. In Schistosoma mansoni this is a snail of species Biomphalaria." + "The time period encompassing the 514th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 40th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "At 20 Centigrade: 6-7 days after L4-adult molt. 9-10 days after first cleavage." + "The time period encompassing the 4th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 478th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 454th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "Strongyloides infective L3 stage that develops from a parasitic adult female as part of a parasitic life-cycle." + "The fourth stage larva of nematodes." + "The time period encompassing the 93rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 770th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 338th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "Fifth cleavage of the AB lineage. Contains 44 cells." + "The time period encompassing the 127th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "Adult female Strongyloides living entirely outside of a host or vector organism." + "The time period encompassing the 386th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The whole period of embryogenesis in a nematode, from the formation of an egg until hatching." + "The first sub-stage of the L4 larva. All vulval cells are migrating toward the center of the future vulva. vulA, vulB, and vulE have divided, but vulC and vulF have not. At 20 Centigrade: 34.3 hours after hatching, 0.3 hours from the L3-to-L4 molt." + "The time period encompassing the 511st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 328th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 150th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 9th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 71st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 110th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The mature, fully developed life stage of Platyhelminthes, usually capable of sexual reproduction." + "The time period encompassing the 35th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "At 20 Centigrade: 9-10 days after L4-adult molt. 12-13 days after first cleavage." + "A developemental life stage in a roundworm of the genus Brugia that occurs from egg hatching until death." + "A C. elegans life stage that occurs during the L3 larval life stage" + "The time period encompassing the 295th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 337th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The C. elegans life stage spanning ~55 min after first cleavage at 20 Centigrade. Contains 12 cells." + "The time period encompassing the 104th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 311st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "An entity that exists in full at any time in which it exists at all, persists through time while maintaining its identity and has no temporal parts."@en + "The time period encompassing the 493rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 60th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The stage when an animal shifts from L2d larva to dauer larva. It includes the synthesis of new cuticle, cease of pharyngeal pumping during a lethargus stage, and the shed off of old cuticle." + "A molecular process that can be carried out by the action of a single macromolecular machine, usually via direct physical interactions with other molecular entities. Function in this sense denotes an action, or activity, that a gene product (or a complex) performs." + "A C. elegans adult life stage that occurs after the animal has recovered from the dauer diapause." + "At 20 Centigrade: 12-13 days after L4-adult molt. 15-16 days after first cleavage." + "L3 larvae isolated from the insect vector and cultured in vitro for 2 days." + "The time period encompassing the 245th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "E-cell has divided into Ea and Ep. Contains 14 cells." + "The second stage larva. Derived from flight muscles of vector host; some development in vitro, with L1 to L2 moulting, has been demonstrated but rarely; these are often staged by hours or days post blood meal." + "The time period encompassing the 463rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The stage during L1-L2d molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old." + "The time period encompassing the 505th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 384th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 521st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "L3 larvae that develop from the L2 larvae in the arthropod vector. This stage is infectious to the mammalian host once it has migrated to the insect proboscis." + "The time period encompassing the 440th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 25th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "Microfilaria larvae found subcutaneously" + "The time period encompassing the 322nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "An independent continuant that is spatially extended whose identity is independent of that of other entities and can be maintained through time."@en + "The time period encompassing the 376th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "Any Brugia developmental stage, including embryo, larva and adult stage." + "In the mosquito, the microfilariae shed sheaths, penetrate the midgut, and migrate to the thoracic muscles were the microfilariae increase in size, molt, and develop into infective larvae (L1 and L3) over a span of 7-21 days." + "Strongyloides infective L3 stage that develops from free-living adult worms as part of a free-living life-cycle." + "The time period encompassing the 192nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 820th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 56th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The C. elegans life stage spanning ~50 min after first cleavage at 20 Centigrade. Contains 8 cells." + "The time period encompassing the 334th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The whole period of embryogenesis in a roundworm of the genus Brugia, from the formation of an egg until hatching." + "Any developmental stage of a Cestode (tapeworm)." + "The time period encompassing the 120th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The third stage larva. At 25 Centigrade, it ranges 32.5-40 hours after fertilization, 18.5-26 hours after hatch." + "The time period encompassing the 24th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 549th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 206th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 29th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 48th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 446th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 175th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 404th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 141st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 230th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 436th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 502nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 47th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 640th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 366th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 1st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "Biological entity that is either an individual member of a biological species or constitutes the structural organization of an individual member of a biological species." "MA:0000001 TAO:0100000 AAO:0010841 HAO:0000000 ZFA:0100000 FMA:62955 WBbt:0000100 UMLS:C1515976 TGMA:0001822 BFO:0000004 BILA:0000000 AEO:0000000 NCIT:C12219 XAO:0000000 EHDAA2:0002229 CARO:0000000 BIRNLEX:6" + "The time period encompassing the 370th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The C. elegans life stage spanning 100-290min after first cleavage at 20 Centigrade. Proliferate from 28 cells to 421 cells. Referring to the whole period of gastrulation." + "p is a process = Def. p is an occurrent that has temporal proper parts and for some time t, p s-depends_on some material entity at t. (axiom label in BFO2 Reference: [083-003])"@en + "The time period encompassing the 428th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + + "A developemental life stage of the nematode Caenorhabditis elegans that occurs from egg hatching until death." + "The time period encompassing the 15th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 385th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 324th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 356th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 456th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 189th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 185th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 377th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 539th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 830th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 42nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "Sixth cleavage of the AB lineage. Contains 68 cells." + "The time period encompassing the 660th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 100th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 276th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 33rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 268th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 244th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The C. elegans life stage spanning 145-150 min after first cleavage at 20 Centigrade. Contains 88 cells." + "The time period encompassing the 298th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 449th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "A specifically dependent continuant that inheres in continuant entities and are not exhibited in full at every time in which it inheres in an entity or group of entities. The exhibition or actualization of a realizable entity is a particular manifestation, functioning or process that occurs under certain circumstances."@en + "A life stage of the nematode Caenorhabditis elegans" + "The time period encompassing the 72nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 21st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 466th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 167th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 98th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 346th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 413rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 199th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The second sub-stage of the L4 larva. The inner cells of the vulva have finished migrating and have formed toroids, but have not fused. vulC and vulF have divided and a narrow lumen has formed. At 20 Centigrade: 35.1 hours after hatching, 1.1 hours from the L3-to-L4 molt." + "The time period encompassing the 260th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 416th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 253rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "Also called zygote. -50min till 0min of first cleavage at 20 Centigrade. Contains 1 cell." + "An early stage in the life cycle of some parasitic nematodes which develops from the egg and precedes the L1 stage." + "The time period encompassing the 448th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 316th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The whole period of embryogenesis in the nematode Caenorhabditis elegans, from the formation of an egg until hatching." + "The time period encompassing the 504th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 174th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 354th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 543rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 252nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 351st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The C. elegans life stage spanning 0-100min after first cleavage at 20 Centigrade. Proliferate from 1 cell to 28 cells. From first cleavage until the start of gastrulation." + "The time period encompassing the 8th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 10th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 476th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The stage in which first stage larvae (L1) that hatch in the absence of food enter a state of developmental arrest." + "The time period encompassing the 336th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "Onchocerca embryonic life stage." + "A tailless cercarium of Schistosoma sp, which resides in the definitive host. After penetration and spending a few days in the skin, schistosomula migrate to the lungs and enter the systemic circulation and are carried to the mesenteric vein of the host where they mature into adult schistosomes." + "The time period encompassing the 424th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 522nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 144th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 270th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 184th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 344th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 509th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The stage when an animal shifts from L4 larva to adult. It includes the synthesis of new cuticle, cease of phrayngeal pumping during a lethargus stage, and the shed off of old cuticle." + "The time period encompassing the 69th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 239th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 379th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 285th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 135th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 267th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 214th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 433rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 533rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "A C. elegans life stage that occurs after embryogenesis" + "The time period encompassing the 179th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 326th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 362nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 87th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The stage of the Strongyloides life-cycle that occurs entirely or partially inside a host or vector organism." + "The time period encompassing the 176th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 289th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "An infectious life-cycle stage, which can infect by direct skin penetration (e.g. Schistosoma sp.) or ingestion (e.g. Fasciola sp.). Cercariae develop in and emerge from the intermediate invertebrate (snail) host. In Schistosoma sp., the cercarium attaches to the skin of the definitive host and secretes proteolytic enzymes helping it to enter into cutaneous capillary vessel; upon the penetration the cercarium sheds its tail and transforms into a schistosomulum. In Fasciola sp., cercariae encyst on vegetation as dormant metacercariae until ingestion by the definitive host." + "The time period encompassing the 59th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 191st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 353rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 349th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The stage during L1-L2 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old." + "The stage when an animal shifts from L2 larva to L3 larva. It includes the synthesis of new cuticle, cease of phrayngeal pumping during a lethargus stage, and the shed off of old cuticle." + "The curation status of the term. The allowed values come from an enumerated list of predefined terms. See the specification of these instances for more detailed definitions of each enumerated value."@en + "The time period encompassing the 246th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 114th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "Proliferates from 100 cells to Lima bean stage." + "The time period encompassing the 89th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "L1 larvae that develop from the microfilariae in the arthropod vector." + "The time period encompassing the 548th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 6th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 94th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 444th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 73rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The stage during L2d-L3 molt, after the brief lethargus period, when an animal sheds off old cuticle." + "The time period encompassing the 439th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 145th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 277th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The stage during postdauer-L4 molt, after the brief lethargus period, when an animal sheds off old cuticle." + "At 20 Centigrade: 10-11 days after L4-adult molt. 13-14 days after first cleavage." + "The time period encompassing the 542nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 468th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 352nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 166th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "At 20 Centigrade: 15-16 days after L4-adult molt. 18-19 days after first cleavage." + "The time period encompassing the 523rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 529th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 340th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 546th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 462nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 3rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 538th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 193rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "At 20 Centigrade: 4-7 days after L4-adult molt. 7-10 days after first cleavage." + "Any Strongyloides developmental stage, including free-living and parasitic stages." + "The time period encompassing the 64th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 88th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "At 20 Centigrade: 16-18 days after L4-adult molt. 18-21 days after first cleavage." + "The time period encompassing the 17th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The C. elegans life stage spanning 20-40min after first cleavage at 20 Centigrade. Contains 4 cells." + "The time period encompassing the 279th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "A C. elegans life stage that occurs during the gastrulating embryo life stage" + "A process that emerges from two or more causally-connected macromolecular activities and has evolved to achieve a biological objective." "Wikipedia:Biological_process" + "The time period encompassing the 494th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 461st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 226th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 314th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "At 20 Centigrade: 72-96 hours after L4-adult molt. 6-7 days after first cleavage." + "The time period encompassing the 536th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 284th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 32nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 117th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 503rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 363rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 50th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 234th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 453rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "L3 larvae isolated from the insect vector and cultured in vitro for 3 days." + "A C. elegans life stage that occurs during the L4 larval life stage" + "The time period encompassing the 96th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "C. elegans life stage that occurs during a larval molt" + "The time period encompassing the 490th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 488th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 160th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 304th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 181st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 19th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 137th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 419th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "b is a specifically dependent continuant = Def. b is a continuant & there is some independent continuant c which is not a spatial region and which is such that b s-depends_on c at every time t during the course of b’s existence. (axiom label in BFO2 Reference: [050-003])"@en + "The C. elegans life stage spanning 155-165 min after first cleavage at 20 Centigrade. Contains 96 cells." + "The time period encompassing the 61st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 513rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "A developemental life stage of a worm" + "Strongyloides L1 larval stage that is the progeny of free-living adult worms as a part of a of free-living life-cycle." + "Microfilariae that have been ingested by the vector in a blood meal from a mammalian host. Found in the midgut and muscles of the insect host." + "Any developmental stage of a nematode of the Onchocerca genus." + "The time period encompassing the 200th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 464th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The C. elegans life stage spanning 0-350min after first cleavage at 20 Centigrade. Proliferate from 1 cell to 560 cells. From start of first cleavage until cleavage is over." + "The time period encompassing the 339th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "A C. elegans life stage that occurs during embryogenesis" + "The time period encompassing the 526th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 291st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "When egg-laying is still going on but intermittent and during which a significant number of oocytes are laid. Included in reproductive stage adult hermaphrodite." + "The time period encompassing the 172nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 387th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "Strongyloides infective stage L3 larval stage. This stage can develop as a part of a free-living life-cycle, or from a parasitic, parthenogenic female stage." + "The time period encompassing the 255th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 310th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 497th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 358th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 317th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 441st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "Any developmental stage in Platyhelminthes (flatworms)." + "The time period encompassing the 512nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 242nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "At 20 Centigrade: 13-14 days after L4-adult molt. 16-17 days after first cleavage." + "The time period encompassing the 183rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The stage during L2d-dauer molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old." + "A microfilaria life stage in which larvae are surrounded by a membrane thought to be derived from the vitelline membrane, hence \"sheathed\"." + "The time period encompassing the 278th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "A third stage larva specialized for dispersal and long term survival." + "The time period encompassing the 198th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "A C. elegans life stage that occurs during the blastula embryo life stage" + "An entity that has temporal parts and that happens, unfolds or develops through time."@en + "The time period encompassing the 531st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 516th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "Seventh cleavage of the AB lineage. Contains 86 cells." + "At 20 Centigrade: 0-24 hours after L4-adult molt." + "The time period encompassing the 66th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 361st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 162nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 43rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "At 20 Centigrade: 48-72 hours after L4-adult molt. 5-6 days after first cleavage." + "A Digenean (fluke) life stage that occurs in the definitive host. The stage begins when the newly excysted juveniles migrate through the liver parenchyma where they increase in size to become juvenile flukes. From here they migrate into the bile ducts, where they grow and develop into fully mature adults." + "The stage of the Strongyloides life-cycle that occurs entirely outside of a host or vector organism." + "The time period encompassing the 450th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 229th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 281st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 535th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 302nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 506th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The C. elegans life stage spanning 350-390min after first cleavage at 20 Centigrade. Cell number remains at ~560 cells, with some new cells generated and some cells go through programmed cell death. Emrbyo elongation started but have not formed comma shape yet. The shape of embryo looks like a lima bean. A stage right before comma embryo. Also called lima embryo or lima bean stage." + "The time period encompassing the 319th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "A C. elegans life stage classified by the number of minutes post first embryonic cleavage." + "The time period encompassing the 46th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 149th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The stage that begins right after hatching and before development proceeds after feeding. A newly hatched L1 larva contains 558 cells." + "A tailless cercarium of Schistosoma sp, 24 hours post-infection by skin penetration of the definitive host." "OPL:0000172" + "The time period encompassing the 90th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "A C. elegans life stage that occurs during the comma embryo life stage" + "The time period encompassing the 38th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 14th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 403rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 348th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "Fourth cleavage of the AB lineage. Contains 24 cells." + "A C. elegans life stage that occurs after the animal has recovered from the dauer diapause. This includes the post dauer L3 (PDL3) stage, the post dauer L4 (PDL4) stage, and post dauer adult stage." + "The time period encompassing the 426th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 293rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The third stage larva of nematodes." + "The time period encompassing the 495th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 360th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The animals have a significant \"prepatent\" period in the host, where they have moulted to adults but not yet started producing eggs or sperm; this stage is usually-should be conditioned by days post infection, with day 26 to approximately day 60 being the \"young adult\" in most systems - but note that the speed of development is different in different host genotypes." + "The time period encompassing the 131st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 418th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 139th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 263rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 541st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 76th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The stage that develops from the embyro and is released from the adult female worm, within the mammalian host. Microfilariae are unsheathed and are mainly found in nodules, the skin and connective tissues." + "The time period encompassing the 106th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 159th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 375th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 341st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 262nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 163rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 528th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 470th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 243rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "A C. elegans life stage that occurs during the elongating embryo life stage" + "The time period encompassing the 188th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 115th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 247th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 452nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "At 20 Centigrade: 11-12 days after L4-adult molt. 14-15 days after first cleavage." + "The time period encompassing the 86th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 208th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 249th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 275th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "L3 larvae after introduction to the mammalian host through the bite wound of the insect vector." + "The nematode life-stage that begins when the organism is fully-developed and has reached maturity." + "Also known as infective L3, or iL3; i.e. isolated from the vector salivary glands; these samples may-should be conditioned by age, which is usually counted in days from the blood meal." + "The time period encompassing the 333rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The life-stage that begins when a B. malayi individual is fully-developed and has reached maturity. Adult B. malayi (or at least adult females) can live for 10 years in a human host, and can outlive their rodent laboratory hosts; it is usual to state the chronological age of the nematodes in days or months post-infection, and occasionally post-patency (the production of first microfilariae)." + "The time period encompassing the 116th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 489th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 173rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 111st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 431st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 518th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 182nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 34th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 391st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 58th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 23rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The stage after an hermaphrodite animal is fully-developed and reaches maturity." + "The stage during L1-L2 molt, after the brief lethargus period, when an animal sheds off old cuticle." + "OBSOLETE. An adult life-stage of a soil-transmitted nematode such as Trichuris sp. that resides in the intestinal epitheium. The stage ends when the posterior of the male and female worms emerge free into the intestinal lumen at which point the worm enters the lumenal stage." + "A developmental life stage of a roundworm of the genus Brugia that occurs from egg hatching until adulthood." + "The time period encompassing the 26th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 125th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 257th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 169th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The Strongyloides life-cycle stage in which male and female adult worms reproduce sexually and live entirely outside a host organism." + "The time period encompassing the 508th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 343rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 320th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "A biological process is the execution of a genetically-encoded biological module or program. It consists of all the steps required to achieve the specific biological objective of the module. A biological process is accomplished by a particular set of molecular functions carried out by specific gene products (or macromolecular complexes), often in a highly regulated manner and in a particular temporal sequence." "Wikipedia:Biological_process" + "The time period encompassing the 292nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 442nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + + "The time period encompassing the 271st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The stage during L2d-L3 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old." + "The C. elegans life stage spanning 350-620min after first cleavage at 20 Centigrade. Cell number remains at ~560 cells, with some new cells generated and some cells go through programmed cell death. The stage that embryo starts elongation until elongation is over." + "The C. elegans life stage spanning 620-800min(hatch) after first cleavage at 20 Centigrade. Cell number remains at ~560 cells, with some new cells generated and some cells go through programmed cell death. A stage after elongation is over. The last stage of embryogenesis. Also called pre-hatched embryo, late embryo or morphogenetic embryo." + "The time period encompassing the 83rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + + "The time period encompassing the 434th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 458th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 429th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 122nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 282nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 395th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "Larvae isolated from the insect vector and cultured in vitro to the L4 stage." + "The time period encompassing the 357th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 225th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 261st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 54th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The stage during L4-adult molt, after the brief lethargus period, when an animal shed off old cuticle." + "L3 larvae isolated from the insect vector and cultured in vitro for 1 day." + "The time period encompassing the 480th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 560th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 217th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 143rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 308th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 78th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 109th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 420th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 132nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 269th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The nematode life-cycle stage that occurs entirely outside of a host organism." + "Adult male Strongyloides living entirely outside of a host or vector organism." + "The time period encompassing the 501st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The tenth sub-stage of the L4 larva. The vulval lumen is completely collapsed. At 20 Centigrade: 42.8 hours after hatching, 8.8 hours from the L3-to-L4 molt." + "The time period encompassing the 331st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 82nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 318th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "Adult male that has developed from L4 larvae in the mammalian host." + "The time period encompassing the 401st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 49th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The C. elegans life stage spanning 520-620min after first cleavage at 20 Centigrade. Cell number remains at ~560 cells, with some new cells generated and some cells go through programmed cell death. The shape of embryo is elongated and tripple fold. A stage between 2-fold embryo and fully-elongated embryo. Also called pretzel embryo or pretzel stage." + "The time period encompassing the 342nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 7th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 251st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 153rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 207th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 443rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 389th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 124th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "Larval stage that is capable of infecting a host organism." + "The time period encompassing the 412nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 142nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 171st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 408th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "An early stage in the life cycle of Brugia species, which develops from the egg and precedes the L1 stage." + "The time period encompassing the 123rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 491st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 74th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 158th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The C. elegans life stage spanning 460-520min after first cleavage at 20 Centigrade. Cell number remains at ~560 cells, with some new cells generated and some cells go through programmed cell death. The shape of embryo is elongated and double fold. A stage between 1.5-fold embryo and 3-fold embryo." + "The time period encompassing the 80th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 63rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 28th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 233rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 129th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 381st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "A sac-like secondary larval stage. The miracidium transforms into a primary (mother) sporocyst; germ cells within the primary sporocyst begin dividing to produce secondary (daughter) sporocysts, which migrate to the snail hepatopancreas; once at the hepatopancreas, germ cells within the secondary sporocyst begin to divide again, this time producing cercariae." + "The time period encompassing the 325th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 241st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 210th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 231st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 248th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "A dependent entity that inheres in a bearer by virtue of how the bearer is related to other entities" + "The time period encompassing the 27th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 303rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + + "The time period encompassing the 283rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 216th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 133rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 393rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 544th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 485th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 402nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The C. elegans life stage spanning 100-105 min after first cleaveage at 20 Centigrade. Contains 28 cells." + "The fourth stage larva male. At 25 Centigrade, it ranges 40-49.5 hours after fertilization, 26-35.5 hours after hatch." + "The time period encompassing the 380th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 107th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The Strongyloides life-cycle stage during which a female adult worm produces larval progeny parthenogenetically within the host organism." + "The time period encompassing the 151st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 534th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 392nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The eighth sub-stage of the L4 larva. vulFs have migrated closer such that the lumen is narrowed in the dorsal section. The approximate cutoff is when the width of the channel is less than the width of the vulD nucleus. At 20 Centigrade: 42.3 hours after hatching, 8.3 hours from the L3-to-L4 molt." + "The time period encompassing the 168th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The stage during L1-L2d molt, after the brief lethargus period, when an animal sheds off old cuticle." + "The time period encompassing the 224th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The time period encompassing the 152nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." + "The nematode life-cycle stage that occurs entirely or partially within a host or vector organism." + "The time period encompassing the 119th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." diff --git a/src/ontology/reports/edges.tsv b/src/ontology/reports/edges.tsv index e69de29..c936b05 100644 --- a/src/ontology/reports/edges.tsv +++ b/src/ontology/reports/edges.tsv @@ -0,0 +1,2158 @@ +?x ?p ?y + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/ontology/reports/obsoletes.tsv b/src/ontology/reports/obsoletes.tsv index e69de29..6166e41 100644 --- a/src/ontology/reports/obsoletes.tsv +++ b/src/ontology/reports/obsoletes.tsv @@ -0,0 +1,6 @@ +?cls ?replCls ?consCls + + + + + diff --git a/src/ontology/reports/synonyms.tsv b/src/ontology/reports/synonyms.tsv index 88b4f9c..7df854c 100644 --- a/src/ontology/reports/synonyms.tsv +++ b/src/ontology/reports/synonyms.tsv @@ -1,2 +1,1578 @@ ?cls ?pred ?val ?synType - "root node"@en + "197 min post first-cleavage Ce" + "310 min post first-cleavage Ce" + "302 min post first-cleavage Ce" + "533 min post first-cleavage Ce" + "371 min post first-cleavage Ce" + "140 min post first-cleavage Ce" + "337 min post first-cleavage Ce" + "175 min post first-cleavage Ce" + "14-days post-L4 adult hermaphrodite Ce" + "Brugia microfilaria" + "C. elegans life stage occurring during 3-fold embryo"@en + "L2d-L3 ecdysis Ce" + "161 min post first-cleavage Ce" + "26 min post first-cleavage Ce" + "106 min post first-cleavage Ce" + "384 min post first-cleavage Ce" + "323 min post first-cleavage Ce" + "13-days post-L4 adult hermaphrodite Ce" + "546 min post first-cleavage Ce" + "92 min post first-cleavage Ce" + "adult Ce" + "cercarium" + "42 min post first-cleavage Ce" + "315 min post first-cleavage Ce" + "153 min post first-cleavage Ce" + "532 min post first-cleavage Ce" + "370 min post first-cleavage Ce" + "265 min post first-cleavage Ce" + "457 min post first-cleavage Ce" + "postdauer-L4 lethargus Ce" + "9-days post-L4 adult hermaphrodite Ce" + "8-cell embryo Ce" + "34 min post first-cleavage Ce" + "251 min post first-cleavage Ce" + "218 min post first-cleavage Ce" + "331 min post first-cleavage Ce" + "169 min post first-cleavage Ce" + "435 min post first-cleavage Ce" + "20 min post first-cleavage Ce" + "100 min post first-cleavage Ce" + "Platyhelminthes egg" + "14-cell embryo Ce" + "47 min post first-cleavage Ce" + "278 min post first-cleavage Ce" + "264 min post first-cleavage Ce" + "C. elegans life stage occurring during gastrulation"@en + "344 min post first-cleavage Ce" + "L4.3 larva Ce" + "8-days post-L4 adult hermaphrodite Ce" + "7-10 days post-L4 adult hermaphrodite Ce" + "33 min post first-cleavage Ce" + "obsolete nematode adult intestinal stage" + "Strongyloides free living adult female" + "113 min post first-cleavage Ce" + "post-reproductive stage adult hermaphrodite Ce" + "182 min post first-cleavage Ce" + "217 min post first-cleavage Ce" + "330 min post first-cleavage Ce" + "448 min post first-cleavage Ce" + "478 min post first-cleavage Ce" + "167 min post first-cleavage Ce" + "nematode larval stage" + "225 min post first-cleavage Ce" + "63 min post first-cleavage Ce" + "464 min post first-cleavage Ce" + "280 min post first-cleavage Ce" + "98 min post first-cleavage Ce" + "L2-L3 ecdysis Ce" + "49 min post first-cleavage Ce" + "post dauer stage Ce"@en + "392 min post first-cleavage Ce" + "Onchocerca L3 larva in vitro cultured D1" + "461 min post first-cleavage Ce" + "metacercarium" + "76 min post first-cleavage Ce" + "C. elegans life stage occurring during elongating embryo"@en + "238 min post first-cleavage Ce" + "6-days post-L4 adult hermaphrodite Ce" + "477 min post first-cleavage Ce" + "Cestoda life stage" + "Brugia life stage" + "7 min post first-cleavage Ce" + "nematode adult" + "224 min post first-cleavage Ce" + "62 min post first-cleavage Ce" + "111 min post first-cleavage Ce" + "490 min post first-cleavage Ce" + "285 min post first-cleavage Ce" + "498 min post first-cleavage Ce" + "127 min post first-cleavage Ce" + "358 min post first-cleavage Ce" + "C. elegans life stage occurring during L4 larval stage"@en + "2-cell embryo Ce" + "Strongyloides life stage" + "188 min post first-cleavage Ce" + "341 min post first-cleavage Ce" + "421 min post first-cleavage Ce" + "503 min post first-cleavage Ce" + "proliferating embryo Ce" + "110 min post first-cleavage Ce" + "190 min post first-cleavage Ce" + "495 min post first-cleavage Ce" + "519 min post first-cleavage Ce" + "Onchocerca life stage" + "190-cells embryo Ce" + "3-fold embryo Ce" + "245 min post first-cleavage Ce" + "406 min post first-cleavage Ce" + "83 min post first-cleavage Ce" + "399 min post first-cleavage Ce" + "511 min post first-cleavage Ce" + "349 min post first-cleavage Ce" + "L4.8 larva Ce" + "Onchocerca post-embryonic life stage" + "Brugia larval stage" + "68 min post first-cleavage Ce" + "148 min post first-cleavage Ce" + "301 min post first-cleavage Ce" + "524 min post first-cleavage Ce" + "139 min post first-cleavage Ce" + "293 min post first-cleavage Ce" + "131 min post first-cleavage Ce" + "362 min post first-cleavage Ce" + "510 min post first-cleavage Ce" + "397 min post first-cleavage Ce" + "Onchocerca adult male" + "L4.7 larva Ce" + "51-cell embryo Ce" + "204 min post first-cleavage Ce" + "378 min post first-cleavage Ce" + "427 min post first-cleavage Ce" + "243 min post first-cleavage Ce" + "482 min post first-cleavage Ce" + "540 min post first-cleavage Ce" + "12 min post first-cleavage Ce" + "229 min post first-cleavage Ce" + "196 min post first-cleavage Ce" + "309 min post first-cleavage Ce" + "413 min post first-cleavage Ce" + "28 min post first-cleavage Ce" + "256 min post first-cleavage Ce" + "microfilaria" + "160 min post first-cleavage Ce" + "25 min post first-cleavage Ce" + "426 min post first-cleavage Ce" + "242 min post first-cleavage Ce" + "322 min post first-cleavage Ce" + "12-days post-L4 adult hermaphrodite Ce" + "539 min post first-cleavage Ce" + "11 min post first-cleavage Ce" + "91 min post first-cleavage Ce" + "L4-adult molt Ce" + "sporocyst" + "195 min post first-cleavage Ce" + "41 min post first-cleavage Ce" + "272 min post first-cleavage Ce" + "307 min post first-cleavage Ce" + "538 min post first-cleavage Ce" + "376 min post first-cleavage Ce" + "456 min post first-cleavage Ce" + "L4-adult lethargus Ce" + "L1-L2 lethargus Ce" + "145 min post first-cleavage Ce" + "211 min post first-cleavage Ce" + "250 min post first-cleavage Ce" + "442 min post first-cleavage Ce" + "516 min post first-cleavage Ce" + "19 min post first-cleavage Ce" + "11-days post-L4 adult hermaphrodite Ce" + "54 min post first-cleavage Ce" + "158 min post first-cleavage Ce" + "40 min post first-cleavage Ce" + "271 min post first-cleavage Ce" + "263 min post first-cleavage Ce" + "455 min post first-cleavage Ce" + "post dauer adult stage Ce"@en + "L4 larva Ce" + "C. elegans life stage occurring during blastula embryo"@en + "Strongyloides parasitic stage" + "7-days post-L4 adult hermaphrodite Ce" + "32 min post first-cleavage Ce" + "5-days post-L4 adult hermaphrodite Ce" + "70 min post first-cleavage Ce" + "298 min post first-cleavage Ce" + "249 min post first-cleavage Ce" + "336 min post first-cleavage Ce" + "174 min post first-cleavage Ce" + "447 min post first-cleavage Ce" + "C. elegans life stage occurring during 2-fold embryo"@en + "L2d-L3 lethargus Ce" + "166 min post first-cleavage Ce" + "105 min post first-cleavage Ce" + "383 min post first-cleavage Ce" + "463 min post first-cleavage Ce" + "328 min post first-cleavage Ce" + "279 min post first-cleavage Ce" + "545 min post first-cleavage Ce" + "97 min post first-cleavage Ce" + "L2d larva Ce" + "314 min post first-cleavage Ce" + "152 min post first-cleavage Ce" + "obsolete set of worm life stages"@en + "C. elegans life stage occurring during proliferating embryo"@en + "4-days post-L4 adult hermaphrodite Ce" + "118 min post first-cleavage Ce" + "69 min post first-cleavage Ce" + "187 min post first-cleavage Ce" + "unfertilized egg Ce" + "476 min post first-cleavage Ce" + "parasitic nematode stage" + "165 min post first-cleavage Ce" + "postembryonic nematode" + "223 min post first-cleavage Ce" + "61 min post first-cleavage Ce" + "327 min post first-cleavage Ce" + "489 min post first-cleavage Ce" + "Platyhelminthes life stage" + "497 min post first-cleavage Ce" + "770 min post first-cleavage Ce" + "96 min post first-cleavage Ce" + "L1-L2d ecdysis Ce" + "Brugia adult" + "46 min post first-cleavage Ce" + "277 min post first-cleavage Ce" + "126 min post first-cleavage Ce" + "357 min post first-cleavage Ce" + "343 min post first-cleavage Ce" + "L4.2 larva Ce" + "1-cell embryo Ce" + "worm life stage" + "Strongyloides free-living adult" + "112 min post first-cleavage Ce" + "oocyte-laying stage adult hermaphrodite Ce" + "181 min post first-cleavage Ce" + "340 min post first-cleavage Ce" + "cysticercoid stage" + "Brugia late embryo" + "502 min post first-cleavage Ce" + "109 min post first-cleavage Ce" + "474 min post first-cleavage Ce" + "720 min post first-cleavage Ce" + "2-fold embryo Ce" + "Nematode life stage" + "86-cell embryo Ce" + "125 min post first-cleavage Ce" + "356 min post first-cleavage Ce" + "405 min post first-cleavage Ce" + "Onchocerca L3 larva (mammalian stage)" + "391 min post first-cleavage Ce" + "blastula embryo Ce" + "460 min post first-cleavage Ce" + "11-15 days post-L4 adult hermaphrodite Ce" + "24 hr schistosomulum" + "75 min post first-cleavage Ce" + "237 min post first-cleavage Ce" + "96-cell embryo Ce" + "6 min post first-cleavage Ce" + "67 min post first-cleavage Ce" + "473 min post first-cleavage Ce" + "531 min post first-cleavage Ce" + "300 min post first-cleavage Ce" + "418 min post first-cleavage Ce" + "369 min post first-cleavage Ce" + "Brugia young adult" + "88 min post first-cleavage Ce" + "404 min post first-cleavage Ce" + "509 min post first-cleavage Ce" + "396 min post first-cleavage Ce" + "Onchocerca L4 larva in vitro cultured" + "434 min post first-cleavage Ce" + "3 hr schistosomulum" + "123 min post first-cleavage Ce" + "203 min post first-cleavage Ce" + "420 min post first-cleavage Ce" + "481 min post first-cleavage Ce" + "embryo Ce" + "189 min post first-cleavage Ce" + "494 min post first-cleavage Ce" + "258 min post first-cleavage Ce" + "412 min post first-cleavage Ce" + "Onchocerca adult female" + "27 min post first-cleavage Ce" + "216 min post first-cleavage Ce" + "433 min post first-cleavage Ce" + "bean embryo Ce" + "202 min post first-cleavage Ce" + "425 min post first-cleavage Ce" + "241 min post first-cleavage Ce" + "480 min post first-cleavage Ce" + "507 min post first-cleavage Ce" + "10 min post first-cleavage Ce" + "194 min post first-cleavage Ce" + "257 min post first-cleavage Ce" + "488 min post first-cleavage Ce" + "411 min post first-cleavage Ce" + "306 min post first-cleavage Ce" + "537 min post first-cleavage Ce" + "375 min post first-cleavage Ce" + "523 min post first-cleavage Ce" + "dauer larva Ce" + "L1 larva Ce" + "144 min post first-cleavage Ce" + "292 min post first-cleavage Ce" + "130 min post first-cleavage Ce" + "361 min post first-cleavage Ce" + "210 min post first-cleavage Ce" + "441 min post first-cleavage Ce" + "C. elegans life stage occurring post embryogenesis"@en + "gastrulating embryo Ce" + "388 min post first-cleavage Ce" + "Strongyloides post free-living L3" + "157 min post first-cleavage Ce" + "39 min post first-cleavage Ce" + "270 min post first-cleavage Ce" + "305 min post first-cleavage Ce" + "536 min post first-cleavage Ce" + "374 min post first-cleavage Ce" + "C. elegans life stage occurring during L3 larval stage"@en + "post dauer L4 stage Ce"@en + "454 min post first-cleavage Ce" + "528 min post first-cleavage Ce" + "L3-L4 molt Ce" + "Strongyloides free-living stage" + "larva Ce" + "143 min post first-cleavage Ce" + "38 min post first-cleavage Ce" + "255 min post first-cleavage Ce" + "209 min post first-cleavage Ce" + "440 min post first-cleavage Ce" + "335 min post first-cleavage Ce" + "173 min post first-cleavage Ce" + "Brugia unsheathed microfilaria" + "C. elegans life stage occurring during 1.5-fold embryo"@en + "L2d-L3 molt Ce" + "208 min post first-cleavage Ce" + "159 min post first-cleavage Ce" + "24 min post first-cleavage Ce" + "104 min post first-cleavage Ce" + "382 min post first-cleavage Ce" + "321 min post first-cleavage Ce" + "544 min post first-cleavage Ce" + "90 min post first-cleavage Ce" + "268 min post first-cleavage Ce" + "348 min post first-cleavage Ce" + "C. elegans life stage occurring during fully-elongated embryo"@en + "20-days post-L4 adult hermaphrodite Ce" + "37 min post first-cleavage Ce" + "C. elegans life stage occurring during L2 larval stage"@en + "117 min post first-cleavage Ce" + "3-days post-L4 adult hermaphrodite Ce" + "186 min post first-cleavage Ce" + "334 min post first-cleavage Ce" + "172 min post first-cleavage Ce" + "Digenean life stage" + "skin microfilaria" + "post dauer L3 stage Ce" + "juvenile fluke" + "164 min post first-cleavage Ce" + "103 min post first-cleavage Ce" + "L4 larval stage" + "468 min post first-cleavage Ce" + "284 min post first-cleavage Ce" + "326 min post first-cleavage Ce" + "850 min post first-cleavage Ce" + "53 min post first-cleavage Ce" + "Brugia L4" + "45 min post first-cleavage Ce" + "276 min post first-cleavage Ce" + "262 min post first-cleavage Ce" + "342 min post first-cleavage Ce" + "L4.1 larva Ce" + "31 min post first-cleavage Ce" + "180 min post first-cleavage Ce" + "220 min post first-cleavage Ce" + "metacestode" + "Brugia middle embryo" + "L3 larval stage" + "228 min post first-cleavage Ce" + "66 min post first-cleavage Ce" + "830 min post first-cleavage Ce" + "660 min post first-cleavage Ce" + "58 min post first-cleavage Ce" + "Brugia L3" + "44 min post first-cleavage Ce" + "275 min post first-cleavage Ce" + "82 min post first-cleavage Ce" + "124 min post first-cleavage Ce" + "355 min post first-cleavage Ce" + "C. elegans life stage"@en + "L4.0 larva Ce" + "390 min post first-cleavage Ce" + "Onchocerca L3 larva (vector stage)" + "459 min post first-cleavage Ce" + "398 min post first-cleavage Ce" + "L4 larva male Ce" + "74 min post first-cleavage Ce" + "178 min post first-cleavage Ce" + "236 min post first-cleavage Ce" + "475 min post first-cleavage Ce" + "pre-reproductive stage adult hermaphrodite Ce" + "5 min post first-cleavage Ce" + "nematode embryo" + "222 min post first-cleavage Ce" + "60 min post first-cleavage Ce" + "472 min post first-cleavage Ce" + "87 min post first-cleavage Ce" + "403 min post first-cleavage Ce" + "Onchocerca L2 larva" + "389 min post first-cleavage Ce" + "515 min post first-cleavage Ce" + "353 min post first-cleavage Ce" + "Strongyloides parasitic female" + "73 min post first-cleavage Ce" + "122 min post first-cleavage Ce" + "18 min post first-cleavage Ce" + "339 min post first-cleavage Ce" + "235 min post first-cleavage Ce" + "419 min post first-cleavage Ce" + "501 min post first-cleavage Ce" + "4 min post first-cleavage Ce" + "all stages Ce" + "493 min post first-cleavage Ce" + "1.5-fold embryo Ce" + "138 min post first-cleavage Ce" + "68-cell embryo Ce" + "297 min post first-cleavage Ce" + "135 min post first-cleavage Ce" + "514 min post first-cleavage Ce" + "352 min post first-cleavage Ce" + "570 min post first-cleavage Ce" + "432 min post first-cleavage Ce" + "elongating embryo Ce" + "121 min post first-cleavage Ce" + "201 min post first-cleavage Ce" + "486 min post first-cleavage Ce" + "479 min post first-cleavage Ce" + "506 min post first-cleavage Ce" + "free-living nematode stage" + "2 min post first-cleavage Ce" + "530 min post first-cleavage Ce" + "492 min post first-cleavage Ce" + "313 min post first-cleavage Ce" + "151 min post first-cleavage Ce" + "487 min post first-cleavage Ce" + "299 min post first-cleavage Ce" + "417 min post first-cleavage Ce" + "522 min post first-cleavage Ce" + "L2d-dauer molt Ce" + "291 min post first-cleavage Ce" + "129 min post first-cleavage Ce" + "360 min post first-cleavage Ce" + "395 min post first-cleavage Ce" + "Onchocerca L4 larva" + "381 min post first-cleavage Ce" + "543 min post first-cleavage Ce" + "95 min post first-cleavage Ce" + "L1-L2d lethargus Ce" + "312 min post first-cleavage Ce" + "150 min post first-cleavage Ce" + "304 min post first-cleavage Ce" + "535 min post first-cleavage Ce" + "373 min post first-cleavage Ce" + "521 min post first-cleavage Ce" + "L2d-dauer lethargus Ce" + "359 min post first-cleavage Ce" + "215 min post first-cleavage Ce" + "postembryonic Ce" + "142 min post first-cleavage Ce" + "reproductive stage adult hermaphrodite Ce" + "290 min post first-cleavage Ce" + "408 min post first-cleavage Ce" + "254 min post first-cleavage Ce" + "446 min post first-cleavage Ce" + "439 min post first-cleavage Ce" + "438 min post first-cleavage Ce" + "207 min post first-cleavage Ce" + "23 min post first-cleavage Ce" + "424 min post first-cleavage Ce" + "240 min post first-cleavage Ce" + "320 min post first-cleavage Ce" + "9 min post first-cleavage Ce" + "89 min post first-cleavage Ce" + "193 min post first-cleavage Ce" + "267 min post first-cleavage Ce" + "15-days post-L4 adult hermaphrodite Ce" + "36 min post first-cleavage Ce" + "179 min post first-cleavage Ce" + "253 min post first-cleavage Ce" + "C. elegans life stage occurring during embryogenesis"@en + "333 min post first-cleavage Ce" + "171 min post first-cleavage Ce" + "550 min post first-cleavage Ce" + "437 min post first-cleavage Ce" + "Platyhelminthes adult" + "postdauer-L4 ecdysis Ce" + "newly excysted juveniles" + "206 min post first-cleavage Ce" + "22 min post first-cleavage Ce" + "387 min post first-cleavage Ce" + "102 min post first-cleavage Ce" + "467 min post first-cleavage Ce" + "319 min post first-cleavage Ce" + "283 min post first-cleavage Ce" + "Strongyloides post parasitic L3" + "52 min post first-cleavage Ce" + "318 min post first-cleavage Ce" + "156 min post first-cleavage Ce" + "269 min post first-cleavage Ce" + "261 min post first-cleavage Ce" + "453 min post first-cleavage Ce" + "C. elegans life stage occurring during adulthood"@en + "L3-L4 lethargus Ce" + "Onchocerca embryonic life stage" + "219 min post first-cleavage Ce" + "450 min post first-cleavage Ce" + "L2 larval stage" + "227 min post first-cleavage Ce" + "65 min post first-cleavage Ce" + "466 min post first-cleavage Ce" + "282 min post first-cleavage Ce" + "820 min post first-cleavage Ce" + "L3-L4 ecdysis Ce" + "51 min post first-cleavage Ce" + "schistosomulum" + "Brugia L2" + "43 min post first-cleavage Ce" + "274 min post first-cleavage Ce" + "81 min post first-cleavage Ce" + "C. elegans life stage occurring during larval molt"@en + "347 min post first-cleavage Ce" + "L4.6 larva Ce" + "C. elegans life stage occurring during comma embryo"@en + "C. elegans life stage occurring during L1 larval stage"@en + "Brugia L1" + "116 min post first-cleavage Ce" + "2-days post-L4 adult hermaphrodite Ce" + "185 min post first-cleavage Ce" + "177 min post first-cleavage Ce" + "nodular microfilaria" + "adult hermaphrodite Ce" + "221 min post first-cleavage Ce" + "108 min post first-cleavage Ce" + "59 min post first-cleavage Ce" + "410 min post first-cleavage Ce" + "99 min post first-cleavage Ce" + "80 min post first-cleavage Ce" + "C. elegans life stage by number of cells"@en + "28-cell embryo Ce" + "Onchocerca L1 larva" + "Strongyloides infective L3" + "72 min post first-cleavage Ce" + "338 min post first-cleavage Ce" + "176 min post first-cleavage Ce" + "234 min post first-cleavage Ce" + "protoscolex stage" + "Brugia early embryo" + "500 min post first-cleavage Ce" + "3 min post first-cleavage Ce" + "508 min post first-cleavage Ce" + "288 min post first-cleavage Ce" + "368 min post first-cleavage Ce" + "650 min post first-cleavage Ce" + "57 min post first-cleavage Ce" + "comma embryo Ce" + "137 min post first-cleavage Ce" + "44-cell embryo Ce" + "354 min post first-cleavage Ce" + "513 min post first-cleavage Ce" + "351 min post first-cleavage Ce" + "560 min post first-cleavage Ce" + "Onchocerca microfilaria (vector stage)" + "120 min post first-cleavage Ce" + "485 min post first-cleavage Ce" + "499 min post first-cleavage Ce" + "Brugia post-infection L3" + "1 min post first-cleavage Ce" + "232 min post first-cleavage Ce" + "471 min post first-cleavage Ce" + "367 min post first-cleavage Ce" + "529 min post first-cleavage Ce" + "416 min post first-cleavage Ce" + "136 min post first-cleavage Ce" + "24-cell embryo Ce" + "248 min post first-cleavage Ce" + "86 min post first-cleavage Ce" + "402 min post first-cleavage Ce" + "Onchocerca L3 larva in vitro cultured D3" + "17 min post first-cleavage Ce" + "380 min post first-cleavage Ce" + "484 min post first-cleavage Ce" + "542 min post first-cleavage Ce" + "14 min post first-cleavage Ce" + "16-18 days post-L4 adult hermaphrodite Ce" + "231 min post first-cleavage Ce" + "311 min post first-cleavage Ce" + "198 min post first-cleavage Ce" + "149 min post first-cleavage Ce" + "415 min post first-cleavage Ce" + "527 min post first-cleavage Ce" + "520 min post first-cleavage Ce" + "L2-L3 lethargus Ce" + "30 min post first-cleavage Ce" + "296 min post first-cleavage Ce" + "134 min post first-cleavage Ce" + "365 min post first-cleavage Ce" + "407 min post first-cleavage Ce" + "214 min post first-cleavage Ce" + "445 min post first-cleavage Ce" + "431 min post first-cleavage Ce" + "late cleavage stage embryo Ce" + "200 min post first-cleavage Ce" + "423 min post first-cleavage Ce" + "239 min post first-cleavage Ce" + "505 min post first-cleavage Ce" + "260 min post first-cleavage Ce" + "458 min post first-cleavage Ce" + "L2 larva Ce" + "29 min post first-cleavage Ce" + "147 min post first-cleavage Ce" + "213 min post first-cleavage Ce" + "252 min post first-cleavage Ce" + "444 min post first-cleavage Ce" + "518 min post first-cleavage Ce" + "L1 arrest Ce" + "549 min post first-cleavage Ce" + "436 min post first-cleavage Ce" + "163 min post first-cleavage Ce" + "205 min post first-cleavage Ce" + "21 min post first-cleavage Ce" + "386 min post first-cleavage Ce" + "325 min post first-cleavage Ce" + "Strongyloides post parasitic L1" + "548 min post first-cleavage Ce" + "94 min post first-cleavage Ce" + "L1-L2d molt Ce" + "317 min post first-cleavage Ce" + "155 min post first-cleavage Ce" + "303 min post first-cleavage Ce" + "534 min post first-cleavage Ce" + "372 min post first-cleavage Ce" + "452 min post first-cleavage Ce" + "C. elegans life stage occurring during enclosing embryo"@en + "L3 larva Ce" + "fully-elongated embryo Ce" + "141 min post first-cleavage Ce" + "newly hatched L1 larval stage Ce" + "C. elegans life stage occurring during bean embryo"@en + "adult male Ce" + "168 min post first-cleavage Ce" + "107 min post first-cleavage Ce" + "385 min post first-cleavage Ce" + "465 min post first-cleavage Ce" + "281 min post first-cleavage Ce" + "Strongyloides post free-living L1" + "547 min post first-cleavage Ce" + "L2d-dauer ecdysis Ce" + "50 min post first-cleavage Ce" + "316 min post first-cleavage Ce" + "154 min post first-cleavage Ce" + "266 min post first-cleavage Ce" + "451 min post first-cleavage Ce" + "346 min post first-cleavage Ce" + "L4.5 larva Ce" + "postdauer-L4 molt Ce" + "10-days post-L4 adult hermaphrodite Ce" + "12-cell embryo Ce" + "35 min post first-cleavage Ce" + "115 min post first-cleavage Ce" + "1-day post-L4 adult hermaphrodite Ce" + "184 min post first-cleavage Ce" + "332 min post first-cleavage Ce" + "170 min post first-cleavage Ce" + "L4-adult ecdysis Ce" + "101 min post first-cleavage Ce" + "491 min post first-cleavage Ce" + "329 min post first-cleavage Ce" + "miracidium" + "48 min post first-cleavage Ce" + "128 min post first-cleavage Ce" + "79 min post first-cleavage Ce" + "C. elegans life stage by minutes post first cleavage"@en + "345 min post first-cleavage Ce" + "L4.4 larva Ce" + "394 min post first-cleavage Ce" + "obsolete nematode adult lumenal stage" + "4-cell embryo Ce" + "nematode infective stage larva" + "Brugia sheathed microfilaria" + "newly molted young adult hermaphrodite Ce" + "114 min post first-cleavage Ce" + "183 min post first-cleavage Ce" + "78 min post first-cleavage Ce" + "449 min post first-cleavage Ce" + "hydatid cyst stage" + "Brugia postembryonic stage" + "L1 larval stage" + "226 min post first-cleavage Ce" + "64 min post first-cleavage Ce" + "287 min post first-cleavage Ce" + "780 min post first-cleavage Ce" + "640 min post first-cleavage Ce" + "56 min post first-cleavage Ce" + "273 min post first-cleavage Ce" + "289 min post first-cleavage Ce" + "393 min post first-cleavage Ce" + "Onchocerca L3 larva in vitro cultured D2" + "462 min post first-cleavage Ce" + "Onchocerca microfilaria (mammalian stage)" + "77 min post first-cleavage Ce" + "oncosphere" + "Brugia embryo" + "8 min post first-cleavage Ce" + "286 min post first-cleavage Ce" + "192 min post first-cleavage Ce" + "470 min post first-cleavage Ce" + "366 min post first-cleavage Ce" + "409 min post first-cleavage Ce" + "55 min post first-cleavage Ce" + "247 min post first-cleavage Ce" + "85 min post first-cleavage Ce" + "401 min post first-cleavage Ce" + "71 min post first-cleavage Ce" + "4-7 days post-L4 adult hermaphrodite Ce" + "16 min post first-cleavage Ce" + "422 min post first-cleavage Ce" + "233 min post first-cleavage Ce" + "483 min post first-cleavage Ce" + "sheathed microfilaria" + "191 min post first-cleavage Ce" + "230 min post first-cleavage Ce" + "469 min post first-cleavage Ce" + "496 min post first-cleavage Ce" + "414 min post first-cleavage Ce" + "Strongyloides free living adult male" + "526 min post first-cleavage Ce" + "246 min post first-cleavage Ce" + "84 min post first-cleavage Ce" + "295 min post first-cleavage Ce" + "400 min post first-cleavage Ce" + "133 min post first-cleavage Ce" + "364 min post first-cleavage Ce" + "512 min post first-cleavage Ce" + "350 min post first-cleavage Ce" + "L4.9 larva Ce" + "430 min post first-cleavage Ce" + "enclosing embryo Ce" + "119 min post first-cleavage Ce" + "15 min post first-cleavage Ce" + "199 min post first-cleavage Ce" + "Brugia L3i" + "504 min post first-cleavage Ce" + "308 min post first-cleavage Ce" + "259 min post first-cleavage Ce" + "L2-L3 molt Ce" + "377 min post first-cleavage Ce" + "525 min post first-cleavage Ce" + "C. elegans life stage occurring during larval stage"@en + "L1-L2 molt Ce" + "146 min post first-cleavage Ce" + "294 min post first-cleavage Ce" + "132 min post first-cleavage Ce" + "363 min post first-cleavage Ce" + "212 min post first-cleavage Ce" + "443 min post first-cleavage Ce" + "517 min post first-cleavage Ce" + "429 min post first-cleavage Ce" + "unsheathed microfilaria" + "88-cell embryo Ce" + "162 min post first-cleavage Ce" + "428 min post first-cleavage Ce" + "379 min post first-cleavage Ce" + "244 min post first-cleavage Ce" + "324 min post first-cleavage Ce" + "541 min post first-cleavage Ce" + "13 min post first-cleavage Ce" + "93 min post first-cleavage Ce" + "L1-L2 ecdysis Ce" + "continuant"@en + "occurrent"@en + "kinase activity" + "curation status specification"@en + "anatomical entity" + "function"@en + "disposition"@en + "quality"@en + "quality" + "material entity"@en + "role"@en + "molecular_function" + "gene product or complex activity"@en + "realizable entity"@en + "realizable"@en + "biological_process" + "biological process"@en + "characteristic"@en + "specifically dependent continuant"@en + "independent continuant"@en + "process"@en + "piL3" + "immature microfilaria Bma" + "hexcanth" + "infective L3" + "iL3" + "single-organism process" + "single organism process" + "infective larva" + "197 min post first-cleavage" + "310 min post first-cleavage" + "302 min post first-cleavage" + "533 min post first-cleavage" + "371 min post first-cleavage" + "140 min post first-cleavage" + "337 min post first-cleavage" + "175 min post first-cleavage" + "14-days post-L4 adult hermaphrodite" + "microfilaria" + "L2d-L3 ecdysis" + "161 min post first-cleavage" + "26 min post first-cleavage" + "106 min post first-cleavage" + "384 min post first-cleavage" + "323 min post first-cleavage" + "13-days post-L4 adult hermaphrodite" + "546 min post first-cleavage" + "92 min post first-cleavage" + "adult" + "42 min post first-cleavage" + "315 min post first-cleavage" + "153 min post first-cleavage" + "532 min post first-cleavage" + "370 min post first-cleavage" + "265 min post first-cleavage" + "457 min post first-cleavage" + "postdauer-L4 lethargus" + "9-days post-L4 adult hermaphrodite" + "8-cell embryo" + "34 min post first-cleavage" + "251 min post first-cleavage" + "218 min post first-cleavage" + "331 min post first-cleavage" + "169 min post first-cleavage" + "435 min post first-cleavage" + "20 min post first-cleavage" + "100 min post first-cleavage" + "egg" + "14-cell embryo" + "47 min post first-cleavage" + "278 min post first-cleavage" + "264 min post first-cleavage" + "344 min post first-cleavage" + "L4.3 larva" + "8-days post-L4 adult hermaphrodite" + "7-10 days post-L4 adult hermaphrodite" + "33 min post first-cleavage" + "113 min post first-cleavage" + "post-reproductive stage adult hermaphrodite" + "182 min post first-cleavage" + "217 min post first-cleavage" + "330 min post first-cleavage" + "448 min post first-cleavage" + "478 min post first-cleavage" + "167 min post first-cleavage" + "larval stage" + "225 min post first-cleavage" + "63 min post first-cleavage" + "464 min post first-cleavage" + "280 min post first-cleavage" + "98 min post first-cleavage" + "L2-L3 ecdysis" + "49 min post first-cleavage" + "392 min post first-cleavage" + "461 min post first-cleavage" + "76 min post first-cleavage" + "238 min post first-cleavage" + "6-days post-L4 adult hermaphrodite" + "477 min post first-cleavage" + "all stages Bma" + "7 min post first-cleavage" + "224 min post first-cleavage" + "62 min post first-cleavage" + "111 min post first-cleavage" + "490 min post first-cleavage" + "285 min post first-cleavage" + "498 min post first-cleavage" + "127 min post first-cleavage" + "358 min post first-cleavage" + "2-cell embryo" + "188 min post first-cleavage" + "341 min post first-cleavage" + "421 min post first-cleavage" + "503 min post first-cleavage" + "proliferating embryo" + "110 min post first-cleavage" + "190 min post first-cleavage" + "495 min post first-cleavage" + "519 min post first-cleavage" + "190-cells embryo" + "3-fold embryo" + "245 min post first-cleavage" + "406 min post first-cleavage" + "83 min post first-cleavage" + "399 min post first-cleavage" + "511 min post first-cleavage" + "349 min post first-cleavage" + "L4.8 larva" + "larval stage" + "68 min post first-cleavage" + "148 min post first-cleavage" + "301 min post first-cleavage" + "524 min post first-cleavage" + "139 min post first-cleavage" + "293 min post first-cleavage" + "131 min post first-cleavage" + "362 min post first-cleavage" + "510 min post first-cleavage" + "397 min post first-cleavage" + "L4.7 larva" + "51-cell embryo" + "204 min post first-cleavage" + "378 min post first-cleavage" + "427 min post first-cleavage" + "243 min post first-cleavage" + "482 min post first-cleavage" + "540 min post first-cleavage" + "12 min post first-cleavage" + "229 min post first-cleavage" + "196 min post first-cleavage" + "309 min post first-cleavage" + "413 min post first-cleavage" + "28 min post first-cleavage" + "256 min post first-cleavage" + "160 min post first-cleavage" + "25 min post first-cleavage" + "426 min post first-cleavage" + "242 min post first-cleavage" + "322 min post first-cleavage" + "12-days post-L4 adult hermaphrodite" + "539 min post first-cleavage" + "11 min post first-cleavage" + "91 min post first-cleavage" + "L4-adult molt" + "195 min post first-cleavage" + "41 min post first-cleavage" + "272 min post first-cleavage" + "307 min post first-cleavage" + "538 min post first-cleavage" + "376 min post first-cleavage" + "456 min post first-cleavage" + "L4-adult lethargus" + "L1-L2 lethargus" + "145 min post first-cleavage" + "211 min post first-cleavage" + "250 min post first-cleavage" + "442 min post first-cleavage" + "516 min post first-cleavage" + "19 min post first-cleavage" + "11-days post-L4 adult hermaphrodite" + "54 min post first-cleavage" + "158 min post first-cleavage" + "40 min post first-cleavage" + "271 min post first-cleavage" + "263 min post first-cleavage" + "455 min post first-cleavage" + "L4 larva" + "parasitic stage" + "7-days post-L4 adult hermaphrodite" + "32 min post first-cleavage" + "5-days post-L4 adult hermaphrodite" + "70 min post first-cleavage" + "298 min post first-cleavage" + "249 min post first-cleavage" + "336 min post first-cleavage" + "174 min post first-cleavage" + "447 min post first-cleavage" + "L2d-L3 lethargus" + "166 min post first-cleavage" + "105 min post first-cleavage" + "383 min post first-cleavage" + "463 min post first-cleavage" + "328 min post first-cleavage" + "279 min post first-cleavage" + "545 min post first-cleavage" + "97 min post first-cleavage" + "L2d larva" + "314 min post first-cleavage" + "152 min post first-cleavage" + "4-days post-L4 adult hermaphrodite" + "118 min post first-cleavage" + "69 min post first-cleavage" + "187 min post first-cleavage" + "unfertilized egg" + "476 min post first-cleavage" + "165 min post first-cleavage" + "223 min post first-cleavage" + "61 min post first-cleavage" + "327 min post first-cleavage" + "489 min post first-cleavage" + "497 min post first-cleavage" + "770 min post first-cleavage" + "96 min post first-cleavage" + "L1-L2d ecdysis" + "adult" + "46 min post first-cleavage" + "277 min post first-cleavage" + "126 min post first-cleavage" + "357 min post first-cleavage" + "343 min post first-cleavage" + "L4.2 larva" + "1-cell embryo" + "free-living adult" + "112 min post first-cleavage" + "oocyte-laying stage adult hermaphrodite" + "181 min post first-cleavage" + "340 min post first-cleavage" + "late embryo" + "502 min post first-cleavage" + "109 min post first-cleavage" + "474 min post first-cleavage" + "720 min post first-cleavage" + "2-fold embryo" + "86-cell embryo" + "125 min post first-cleavage" + "356 min post first-cleavage" + "405 min post first-cleavage" + "391 min post first-cleavage" + "blastula embryo" + "460 min post first-cleavage" + "75 min post first-cleavage" + "237 min post first-cleavage" + "96-cell embryo" + "6 min post first-cleavage" + "67 min post first-cleavage" + "473 min post first-cleavage" + "531 min post first-cleavage" + "300 min post first-cleavage" + "418 min post first-cleavage" + "369 min post first-cleavage" + "young adult" + "88 min post first-cleavage" + "404 min post first-cleavage" + "509 min post first-cleavage" + "396 min post first-cleavage" + "434 min post first-cleavage" + "123 min post first-cleavage" + "203 min post first-cleavage" + "420 min post first-cleavage" + "481 min post first-cleavage" + "embryo" + "189 min post first-cleavage" + "494 min post first-cleavage" + "258 min post first-cleavage" + "412 min post first-cleavage" + "27 min post first-cleavage" + "216 min post first-cleavage" + "433 min post first-cleavage" + "bean embryo" + "202 min post first-cleavage" + "425 min post first-cleavage" + "241 min post first-cleavage" + "480 min post first-cleavage" + "507 min post first-cleavage" + "10 min post first-cleavage" + "194 min post first-cleavage" + "257 min post first-cleavage" + "488 min post first-cleavage" + "411 min post first-cleavage" + "306 min post first-cleavage" + "537 min post first-cleavage" + "375 min post first-cleavage" + "523 min post first-cleavage" + "dauer larva" + "L1 larva" + "144 min post first-cleavage" + "292 min post first-cleavage" + "130 min post first-cleavage" + "361 min post first-cleavage" + "210 min post first-cleavage" + "441 min post first-cleavage" + "gastrulating embryo" + "388 min post first-cleavage" + "free-living L3" + "157 min post first-cleavage" + "39 min post first-cleavage" + "270 min post first-cleavage" + "305 min post first-cleavage" + "536 min post first-cleavage" + "374 min post first-cleavage" + "454 min post first-cleavage" + "528 min post first-cleavage" + "L3-L4 molt" + "free-living stage" + "larva" + "143 min post first-cleavage" + "38 min post first-cleavage" + "255 min post first-cleavage" + "209 min post first-cleavage" + "440 min post first-cleavage" + "335 min post first-cleavage" + "173 min post first-cleavage" + "unsheathed microfilaria" + "L2d-L3 molt" + "208 min post first-cleavage" + "159 min post first-cleavage" + "24 min post first-cleavage" + "104 min post first-cleavage" + "382 min post first-cleavage" + "321 min post first-cleavage" + "544 min post first-cleavage" + "90 min post first-cleavage" + "268 min post first-cleavage" + "348 min post first-cleavage" + "20-days post-L4 adult hermaphrodite" + "37 min post first-cleavage" + "117 min post first-cleavage" + "3-days post-L4 adult hermaphrodite" + "186 min post first-cleavage" + "334 min post first-cleavage" + "172 min post first-cleavage" + "164 min post first-cleavage" + "103 min post first-cleavage" + "468 min post first-cleavage" + "284 min post first-cleavage" + "326 min post first-cleavage" + "850 min post first-cleavage" + "53 min post first-cleavage" + "L4" + "45 min post first-cleavage" + "276 min post first-cleavage" + "262 min post first-cleavage" + "342 min post first-cleavage" + "L4.1 larva" + "31 min post first-cleavage" + "180 min post first-cleavage" + "220 min post first-cleavage" + "middle embryo" + "228 min post first-cleavage" + "66 min post first-cleavage" + "830 min post first-cleavage" + "660 min post first-cleavage" + "58 min post first-cleavage" + "L3" + "44 min post first-cleavage" + "275 min post first-cleavage" + "82 min post first-cleavage" + "124 min post first-cleavage" + "355 min post first-cleavage" + "L4.0 larva" + "390 min post first-cleavage" + "459 min post first-cleavage" + "398 min post first-cleavage" + "L4 larva male" + "74 min post first-cleavage" + "178 min post first-cleavage" + "236 min post first-cleavage" + "475 min post first-cleavage" + "pre-reproductive stage adult hermaphrodite" + "5 min post first-cleavage" + "222 min post first-cleavage" + "60 min post first-cleavage" + "472 min post first-cleavage" + "87 min post first-cleavage" + "403 min post first-cleavage" + "389 min post first-cleavage" + "515 min post first-cleavage" + "353 min post first-cleavage" + "parasitic female" + "73 min post first-cleavage" + "122 min post first-cleavage" + "18 min post first-cleavage" + "339 min post first-cleavage" + "235 min post first-cleavage" + "419 min post first-cleavage" + "501 min post first-cleavage" + "4 min post first-cleavage" + "all stages" + "493 min post first-cleavage" + "1.5-fold embryo" + "138 min post first-cleavage" + "68-cell embryo" + "297 min post first-cleavage" + "135 min post first-cleavage" + "514 min post first-cleavage" + "352 min post first-cleavage" + "570 min post first-cleavage" + "432 min post first-cleavage" + "elongating embryo" + "121 min post first-cleavage" + "201 min post first-cleavage" + "486 min post first-cleavage" + "479 min post first-cleavage" + "506 min post first-cleavage" + "2 min post first-cleavage" + "530 min post first-cleavage" + "492 min post first-cleavage" + "313 min post first-cleavage" + "151 min post first-cleavage" + "487 min post first-cleavage" + "299 min post first-cleavage" + "417 min post first-cleavage" + "522 min post first-cleavage" + "L2d-dauer molt" + "291 min post first-cleavage" + "129 min post first-cleavage" + "360 min post first-cleavage" + "395 min post first-cleavage" + "381 min post first-cleavage" + "543 min post first-cleavage" + "95 min post first-cleavage" + "L1-L2d lethargus" + "312 min post first-cleavage" + "150 min post first-cleavage" + "304 min post first-cleavage" + "535 min post first-cleavage" + "373 min post first-cleavage" + "521 min post first-cleavage" + "L2d-dauer lethargus" + "359 min post first-cleavage" + "215 min post first-cleavage" + "postembryonic" + "142 min post first-cleavage" + "reproductive stage adult hermaphrodite" + "290 min post first-cleavage" + "408 min post first-cleavage" + "254 min post first-cleavage" + "446 min post first-cleavage" + "439 min post first-cleavage" + "438 min post first-cleavage" + "207 min post first-cleavage" + "23 min post first-cleavage" + "424 min post first-cleavage" + "240 min post first-cleavage" + "320 min post first-cleavage" + "9 min post first-cleavage" + "89 min post first-cleavage" + "193 min post first-cleavage" + "267 min post first-cleavage" + "15-days post-L4 adult hermaphrodite" + "36 min post first-cleavage" + "179 min post first-cleavage" + "253 min post first-cleavage" + "333 min post first-cleavage" + "171 min post first-cleavage" + "550 min post first-cleavage" + "437 min post first-cleavage" + "adult" + "postdauer-L4 ecdysis" + "206 min post first-cleavage" + "22 min post first-cleavage" + "387 min post first-cleavage" + "102 min post first-cleavage" + "467 min post first-cleavage" + "319 min post first-cleavage" + "283 min post first-cleavage" + "post parasitic L3" + "52 min post first-cleavage" + "318 min post first-cleavage" + "156 min post first-cleavage" + "269 min post first-cleavage" + "261 min post first-cleavage" + "453 min post first-cleavage" + "L3-L4 lethargus" + "219 min post first-cleavage" + "450 min post first-cleavage" + "227 min post first-cleavage" + "65 min post first-cleavage" + "466 min post first-cleavage" + "282 min post first-cleavage" + "820 min post first-cleavage" + "L3-L4 ecdysis" + "51 min post first-cleavage" + "L2" + "43 min post first-cleavage" + "274 min post first-cleavage" + "81 min post first-cleavage" + "347 min post first-cleavage" + "L4.6 larva" + "L1" + "116 min post first-cleavage" + "2-days post-L4 adult hermaphrodite" + "185 min post first-cleavage" + "177 min post first-cleavage" + "adult hermaphrodite" + "221 min post first-cleavage" + "108 min post first-cleavage" + "59 min post first-cleavage" + "410 min post first-cleavage" + "99 min post first-cleavage" + "80 min post first-cleavage" + "28-cell embryo" + "infective L3" + "72 min post first-cleavage" + "338 min post first-cleavage" + "176 min post first-cleavage" + "234 min post first-cleavage" + "early embryo" + "500 min post first-cleavage" + "3 min post first-cleavage" + "508 min post first-cleavage" + "288 min post first-cleavage" + "368 min post first-cleavage" + "650 min post first-cleavage" + "57 min post first-cleavage" + "comma embryo" + "137 min post first-cleavage" + "44-cell embryo" + "354 min post first-cleavage" + "513 min post first-cleavage" + "351 min post first-cleavage" + "560 min post first-cleavage" + "120 min post first-cleavage" + "485 min post first-cleavage" + "499 min post first-cleavage" + "post-infection L3" + "1 min post first-cleavage" + "232 min post first-cleavage" + "471 min post first-cleavage" + "367 min post first-cleavage" + "529 min post first-cleavage" + "416 min post first-cleavage" + "136 min post first-cleavage" + "24-cell embryo" + "248 min post first-cleavage" + "86 min post first-cleavage" + "402 min post first-cleavage" + "17 min post first-cleavage" + "380 min post first-cleavage" + "484 min post first-cleavage" + "542 min post first-cleavage" + "14 min post first-cleavage" + "16-18 days post-L4 adult hermaphrodite" + "231 min post first-cleavage" + "311 min post first-cleavage" + "198 min post first-cleavage" + "149 min post first-cleavage" + "415 min post first-cleavage" + "527 min post first-cleavage" + "520 min post first-cleavage" + "L2-L3 lethargus" + "30 min post first-cleavage" + "296 min post first-cleavage" + "134 min post first-cleavage" + "365 min post first-cleavage" + "407 min post first-cleavage" + "214 min post first-cleavage" + "445 min post first-cleavage" + "431 min post first-cleavage" + "late cleavage stage embryo" + "200 min post first-cleavage" + "423 min post first-cleavage" + "239 min post first-cleavage" + "505 min post first-cleavage" + "260 min post first-cleavage" + "458 min post first-cleavage" + "L2 larva" + "29 min post first-cleavage" + "147 min post first-cleavage" + "213 min post first-cleavage" + "252 min post first-cleavage" + "444 min post first-cleavage" + "518 min post first-cleavage" + "549 min post first-cleavage" + "436 min post first-cleavage" + "163 min post first-cleavage" + "205 min post first-cleavage" + "21 min post first-cleavage" + "386 min post first-cleavage" + "325 min post first-cleavage" + "post parasitic L1" + "548 min post first-cleavage" + "94 min post first-cleavage" + "L1-L2d molt" + "317 min post first-cleavage" + "155 min post first-cleavage" + "303 min post first-cleavage" + "534 min post first-cleavage" + "372 min post first-cleavage" + "452 min post first-cleavage" + "L3 larva" + "fully-elongated embryo" + "141 min post first-cleavage" + "adult male" + "168 min post first-cleavage" + "107 min post first-cleavage" + "385 min post first-cleavage" + "465 min post first-cleavage" + "281 min post first-cleavage" + "post free-living L1" + "547 min post first-cleavage" + "L2d-dauer ecdysis" + "50 min post first-cleavage" + "316 min post first-cleavage" + "154 min post first-cleavage" + "266 min post first-cleavage" + "451 min post first-cleavage" + "346 min post first-cleavage" + "L4.5 larva" + "postdauer-L4 molt" + "10-days post-L4 adult hermaphrodite" + "12-cell embryo" + "35 min post first-cleavage" + "115 min post first-cleavage" + "1-day post-L4 adult hermaphrodite" + "184 min post first-cleavage" + "332 min post first-cleavage" + "170 min post first-cleavage" + "101 min post first-cleavage" + "491 min post first-cleavage" + "329 min post first-cleavage" + "48 min post first-cleavage" + "128 min post first-cleavage" + "79 min post first-cleavage" + "345 min post first-cleavage" + "L4.4 larva" + "394 min post first-cleavage" + "4-cell embryo" + "sheathed microfilaria" + "newly molted young adult hermaphrodite" + "114 min post first-cleavage" + "183 min post first-cleavage" + "78 min post first-cleavage" + "449 min post first-cleavage" + "postembryonic stage" + "226 min post first-cleavage" + "64 min post first-cleavage" + "287 min post first-cleavage" + "780 min post first-cleavage" + "640 min post first-cleavage" + "56 min post first-cleavage" + "273 min post first-cleavage" + "289 min post first-cleavage" + "393 min post first-cleavage" + "462 min post first-cleavage" + "77 min post first-cleavage" + "embryo" + "8 min post first-cleavage" + "286 min post first-cleavage" + "192 min post first-cleavage" + "470 min post first-cleavage" + "366 min post first-cleavage" + "409 min post first-cleavage" + "55 min post first-cleavage" + "247 min post first-cleavage" + "85 min post first-cleavage" + "401 min post first-cleavage" + "71 min post first-cleavage" + "4-7 days post-L4 adult hermaphrodite" + "16 min post first-cleavage" + "422 min post first-cleavage" + "233 min post first-cleavage" + "483 min post first-cleavage" + "191 min post first-cleavage" + "230 min post first-cleavage" + "469 min post first-cleavage" + "496 min post first-cleavage" + "414 min post first-cleavage" + "526 min post first-cleavage" + "246 min post first-cleavage" + "84 min post first-cleavage" + "295 min post first-cleavage" + "400 min post first-cleavage" + "133 min post first-cleavage" + "364 min post first-cleavage" + "512 min post first-cleavage" + "350 min post first-cleavage" + "L4.9 larva" + "430 min post first-cleavage" + "enclosing embryo" + "119 min post first-cleavage" + "15 min post first-cleavage" + "199 min post first-cleavage" + "L3i" + "504 min post first-cleavage" + "308 min post first-cleavage" + "259 min post first-cleavage" + "L2-L3 molt" + "377 min post first-cleavage" + "525 min post first-cleavage" + "L1-L2 molt" + "146 min post first-cleavage" + "294 min post first-cleavage" + "132 min post first-cleavage" + "363 min post first-cleavage" + "212 min post first-cleavage" + "443 min post first-cleavage" + "517 min post first-cleavage" + "429 min post first-cleavage" + "88-cell embryo" + "162 min post first-cleavage" + "428 min post first-cleavage" + "379 min post first-cleavage" + "244 min post first-cleavage" + "324 min post first-cleavage" + "541 min post first-cleavage" + "13 min post first-cleavage" + "93 min post first-cleavage" + "L1-L2 ecdysis" + "microfilaria Bma" + "Brugia MF" + "cercariae" + "platyhelminth egg" + "nematode adult intestinal phase" + "nematode larva" + "larva nematode" + "metacercariae" + "adult nematode" + "L5" + "all stages Strongyloides" + "early embryo" + "larva Bma" + "microfilaria nematode" + "MF" + "microfilariae" + "platyhelminth developmental stage" + "Platyhelminthes developmental stage" + "adult Bma" + "fertilized egg" + "Strongyloides free-living L5" + "late embryo Bma" + "nematode developmental stage" + "all stages nematode" + "24 hr somule" + "young adult Bma" + "3 hr somule" + "PDL4" + "unsheathed microfilaria Bma" + "mature microfilaria Bma" + "Brugia mature microfilaria" + "fluke life stage" + "skin microfilariae" + "PDL3" + "dauer exit" + "L4 larva nematode" + "L4 larva Bma" + "metacestode stage" + "middle embryo Bma" + "L3 larva nematode" + "L3 larva Bma" + "nematode egg stage" + "embryo nematode" + "Strongyloides L5" + "mid embryo" + "platyhelminth adult" + "NEJ" + "newly emerged juveniles" + "L2 larva nematode" + "somule" + "L2 larva Bma" + "L1 larva Bma" + "nodular microfilariae" + "nodular microfilariae nematode" + "Strongyloides infective stage larva" + "Strongyloides iL3" + "protoscolex" + "early embryo Bma" + "post-infection L3 Bma" + "L1 diapause" + "pre-hatched embryo" + "late embryo" + "morphogenetic stage" + "nematode adult lumenal phase" + "Brugia immature microfilaria" + "sheathed microfilaria Bma" + "metacestode vesicle" + "hydatid cyst" + "postembryonic Bma" + "L1 larva nematode" + "embryo Bma" + "sheathed microfilaria nematode" + "sheathed microfilariae" + "vector-derived L3 Bma" + "Brugia vector-derived L3" + "unsheathed microfilariae" + "unsheathed microfilaria nematode" + "phosphokinase activity" + "molecular function" + "physiological process" + "biological process" diff --git a/src/ontology/reports/xrefs.tsv b/src/ontology/reports/xrefs.tsv index e69de29..d9d4a1c 100644 --- a/src/ontology/reports/xrefs.tsv +++ b/src/ontology/reports/xrefs.tsv @@ -0,0 +1,23 @@ +?cls ?xref + "OPL:0000172" + "OPL:0000017" + "Reactome:R-HSA-6788855" + "Reactome:R-HSA-6788867" + "MA:0000001" + "TAO:0100000" + "AAO:0010841" + "HAO:0000000" + "ZFA:0100000" + "FMA:62955" + "WBbt:0000100" + "UMLS:C1515976" + "TGMA:0001822" + "BFO:0000004" + "BILA:0000000" + "AEO:0000000" + "NCIT:C12219" + "XAO:0000000" + "EHDAA2:0002229" + "CARO:0000000" + "BIRNLEX:6" + "Wikipedia:Biological_process" diff --git a/src/ontology/run.sh b/src/ontology/run.sh index 2718ff6..873e9bd 100755 --- a/src/ontology/run.sh +++ b/src/ontology/run.sh @@ -14,6 +14,8 @@ # # See README-editors.md for more details. +set -e + if [ -f run.sh.conf ]; then . ./run.sh.conf fi @@ -29,6 +31,22 @@ elif [ -f "$HOME/Library/Application Support/ontology-development-kit/github/tok GH_TOKEN=$(cat "$HOME/Library/Application Support/ontology-development-kit/github/token") fi +# SSH agent socket +# On macOS, we cannot use $SSH_AUTH_SOCK directly, +# we need to use a "magic" socket instead. +case "$(uname)" in +Darwin) + ODK_SSH_AUTH_SOCKET=/run/host-services/ssh-auth.sock + ;; +*) + ODK_SSH_AUTH_SOCKET=$SSH_AUTH_SOCK + ;; +esac +ODK_SSH_BIND= +if [ -n "$ODK_SSH_AUTH_SOCKET" ]; then + ODK_SSH_BIND=",$ODK_SSH_AUTH_SOCKET:/run/host-services/ssh-auth.sock" +fi + ODK_IMAGE=${ODK_IMAGE:-odkfull} TAG_IN_IMAGE=$(echo $ODK_IMAGE | awk -F':' '{ print $2 }') if [ -n "$TAG_IN_IMAGE" ]; then @@ -40,16 +58,28 @@ ODK_TAG=${ODK_TAG:-latest} ODK_JAVA_OPTS=${ODK_JAVA_OPTS:--Xmx8G} ODK_DEBUG=${ODK_DEBUG:-no} +ODK_USER_ID=${ODK_USER_ID:-$(id -u)} +ODK_GROUP_ID=${ODK_GROUP_ID:-$(id -g)} + +# Convert OWLAPI_* environment variables to the OWLAPI as Java options +# See http://owlcs.github.io/owlapi/apidocs_4/org/semanticweb/owlapi/model/parameters/ConfigurationOptions.html +# for a list of allowed options +OWLAPI_OPTIONS_NAMESPACE=org.semanticweb.owlapi.model.parameters.ConfigurationOptions +for owlapi_var in $(env | sed -n s/^OWLAPI_//p) ; do + ODK_JAVA_OPTS="$ODK_JAVA_OPTS -D$OWLAPI_OPTIONS_NAMESPACE.${owlapi_var%=*}=${owlapi_var#*=}" +done + TIMECMD= if [ x$ODK_DEBUG = xyes ]; then # If you wish to change the format string, take care of using # non-breaking spaces (U+00A0) instead of normal spaces, to # prevent the shell from tokenizing the format string. - echo "Running ${IMAGE} with ${ODK_JAVA_OPTS} of memory for ROBOT and Java-based pipeline steps." + echo "Running obolibrary/${ODK_IMAGE}:${ODK_TAG} with '${ODK_JAVA_OPTS}' as options for ROBOT and other Java-based pipeline steps." TIMECMD="/usr/bin/time -f ### DEBUG STATS ###\nElapsed time: %E\nPeak memory: %M kb" fi +rm -f tmp/debug.log -VOLUME_BIND=$PWD/../../:/work +VOLUME_BIND=$PWD/../../:/work$ODK_SSH_BIND WORK_DIR=/work/src/ontology if [ -n "$ODK_BINDS" ]; then @@ -59,14 +89,14 @@ fi if [ -n "$USE_SINGULARITY" ]; then singularity exec --cleanenv $ODK_SINGULARITY_OPTIONS \ - --env "ROBOT_JAVA_ARGS=$ODK_JAVA_OPTS,JAVA_OPTS=$ODK_JAVA_OPTS" \ + --env "ROBOT_JAVA_ARGS=$ODK_JAVA_OPTS,JAVA_OPTS=$ODK_JAVA_OPTS,SSH_AUTH_SOCK=/run/host-services/ssh-auth.sock,ODK_USER_ID=$ODK_USER_ID,ODK_GROUP_ID=$ODK_GROUP_ID,ODK_DEBUG=$ODK_DEBUG" \ --bind $VOLUME_BIND \ -W $WORK_DIR \ docker://obolibrary/$ODK_IMAGE:$ODK_TAG $TIMECMD "$@" else BIND_OPTIONS="-v $(echo $VOLUME_BIND | sed 's/,/ -v /')" docker run $ODK_DOCKER_OPTIONS $BIND_OPTIONS -w $WORK_DIR \ - -e ROBOT_JAVA_ARGS="$ODK_JAVA_OPTS" -e JAVA_OPTS="$ODK_JAVA_OPTS" \ + -e ROBOT_JAVA_ARGS="$ODK_JAVA_OPTS" -e JAVA_OPTS="$ODK_JAVA_OPTS" -e SSH_AUTH_SOCK=/run/host-services/ssh-auth.sock -e ODK_USER_ID=$ODK_USER_ID -e ODK_GROUP_ID=$ODK_GROUP_ID -e ODK_DEBUG=$ODK_DEBUG \ --rm -ti obolibrary/$ODK_IMAGE:$ODK_TAG $TIMECMD "$@" fi diff --git a/src/scripts/run-command.sh b/src/scripts/run-command.sh new file mode 100755 index 0000000..45d431d --- /dev/null +++ b/src/scripts/run-command.sh @@ -0,0 +1,4 @@ +#!/bin/sh +ODK_DEBUG_FILE=${ODK_DEBUG_FILE:-debug.log} +echo "Command: sh $@" >> $ODK_DEBUG_FILE +/usr/bin/time -a -o $ODK_DEBUG_FILE -f "Elapsed time: %E\nPeak memory: %M kb" /bin/sh "$@" diff --git a/src/scripts/update_repo.sh b/src/scripts/update_repo.sh index ea330e8..8fccc16 100644 --- a/src/scripts/update_repo.sh +++ b/src/scripts/update_repo.sh @@ -21,10 +21,11 @@ cp target/$OID/src/ontology/run.sh $SRCDIR/ontology/ cp -r target/$OID/src/sparql/* $SRCDIR/sparql/ mkdir -p $ROOTDIR/.github mkdir -p $ROOTDIR/.github/workflows -cp -n target/$OID/.github/workflows/qc.yml $ROOTDIR/.github/workflows/qc.yml +cp target/$OID/.github/workflows/qc.yml $ROOTDIR/.github/workflows/qc.yml + echo "WARNING: These files should be manually migrated: mkdocs.yaml, .gitignore, src/ontology/catalog.xml (if you added a new import or component)" -echo "WARNING: Your QC workflows have not been updated automatically. Please update the ODK version number(s) in .github/workflows/qc.yml." + echo "Ontology repository update successfully completed." \ No newline at end of file diff --git a/src/sparql/dc-properties-violation.sparql b/src/sparql/dc-properties-violation.sparql new file mode 100644 index 0000000..9e5199d --- /dev/null +++ b/src/sparql/dc-properties-violation.sparql @@ -0,0 +1,11 @@ +# The purpose of this violation is to make sure people update +# from using the deprecated DC Elements 1.1 namespace (http://purl.org/dc/elements/1.1/) +# to using the recommended DC Terms namespace (http://purl.org/dc/terms/) +# See also discussion on https://github.com/oborel/obo-relations/pull/692 + +SELECT ?term ?predicate WHERE { + ?term ?predicate ?value . + FILTER(STRSTARTS(STR(?predicate), "http://purl.org/dc/elements/1.1/")) + FILTER(isIRI(?term) && (STRSTARTS(str(?term), "http://purl.obolibrary.org/obo/WBls_"))) +} + diff --git a/wbls-base.json b/wbls-base.json index 76b5f78..a59497e 100644 --- a/wbls-base.json +++ b/wbls-base.json @@ -40,63 +40,11 @@ "val" : "Version: 1.04" }, { "pred" : "http://www.w3.org/2002/07/owl#versionInfo", - "val" : "2024-01-16" + "val" : "2024-04-09" } ], - "version" : "http://purl.obolibrary.org/obo/wbls/releases/2024-01-16/wbls-base.json" + "version" : "http://purl.obolibrary.org/obo/wbls/releases/2024-04-09/wbls-base.json" }, "nodes" : [ { - "id" : "http://purl.obolibrary.org/obo/BFO_0000050", - "lbl" : "part_of", - "type" : "PROPERTY", - "meta" : { - "xrefs" : [ { - "val" : "BFO:0000050" - } ], - "basicPropertyValues" : [ { - "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val" : "worm_development" - }, { - "pred" : "http://www.geneontology.org/formats/oboInOwl#shorthand", - "val" : "part_of" - } ] - } - }, { - "id" : "http://purl.obolibrary.org/obo/BFO_0000062", - "lbl" : "preceded_by", - "type" : "PROPERTY", - "meta" : { - "xrefs" : [ { - "val" : "BFO:0000062" - } ], - "basicPropertyValues" : [ { - "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val" : "worm_development" - }, { - "pred" : "http://www.geneontology.org/formats/oboInOwl#shorthand", - "val" : "preceded_by" - } ] - } - }, { - "id" : "http://purl.obolibrary.org/obo/IAO_0000115", - "lbl" : "definition", - "type" : "PROPERTY" - }, { - "id" : "http://purl.obolibrary.org/obo/RO_0002087", - "lbl" : "starts_at_end_of", - "type" : "PROPERTY", - "meta" : { - "xrefs" : [ { - "val" : "RO:0002087" - } ], - "basicPropertyValues" : [ { - "pred" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "val" : "worm_development" - }, { - "pred" : "http://www.geneontology.org/formats/oboInOwl#shorthand", - "val" : "starts_at_end_of" - } ] - } - }, { "id" : "http://purl.obolibrary.org/obo/WBls_0000001", "lbl" : "free-living nematode stage", "type" : "CLASS", @@ -18100,42 +18048,6 @@ "val" : "worm_development" } ] } - }, { - "id" : "http://www.geneontology.org/formats/oboInOwl#hasAlternativeId", - "lbl" : "has_alternative_id", - "type" : "PROPERTY" - }, { - "id" : "http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym", - "lbl" : "has_broad_synonym", - "type" : "PROPERTY" - }, { - "id" : "http://www.geneontology.org/formats/oboInOwl#hasDbXref", - "lbl" : "database_cross_reference", - "type" : "PROPERTY" - }, { - "id" : "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym", - "lbl" : "has_exact_synonym", - "type" : "PROPERTY" - }, { - "id" : "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym", - "lbl" : "has_narrow_synonym", - "type" : "PROPERTY" - }, { - "id" : "http://www.geneontology.org/formats/oboInOwl#hasOBOFormatVersion", - "lbl" : "has_obo_format_version", - "type" : "PROPERTY" - }, { - "id" : "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", - "lbl" : "has_obo_namespace", - "type" : "PROPERTY" - }, { - "id" : "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym", - "lbl" : "has_related_synonym", - "type" : "PROPERTY" - }, { - "id" : "http://www.geneontology.org/formats/oboInOwl#shorthand", - "lbl" : "shorthand", - "type" : "PROPERTY" } ], "edges" : [ { "sub" : "http://purl.obolibrary.org/obo/WBls_0000001", @@ -18152,11 +18064,11 @@ }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000003", "pred" : "is_a", - "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + "obj" : "http://purl.obolibrary.org/obo/WBls_0000803" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000004", "pred" : "is_a", - "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + "obj" : "http://purl.obolibrary.org/obo/WBls_0000812" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000004", "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", @@ -18164,11 +18076,19 @@ }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000005", "pred" : "is_a", - "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000005", "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", "obj" : "http://purl.obolibrary.org/obo/WBls_0000004" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000006", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000006", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000006", "pred" : "is_a", @@ -18181,6 +18101,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000006", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000669" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000007", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000007", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000007", "pred" : "is_a", @@ -18193,6 +18121,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000007", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000006" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000008", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000008", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000008", "pred" : "is_a", @@ -18205,6 +18141,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000008", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000007" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000009", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000009", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000009", "pred" : "is_a", @@ -18216,7 +18160,11 @@ }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000010", "pred" : "is_a", - "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000010", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000010", "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", @@ -18225,6 +18173,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000010", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000011", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000011", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000011", "pred" : "is_a", @@ -18237,6 +18193,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000011", "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", "obj" : "http://purl.obolibrary.org/obo/WBls_0000086" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000012", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000012", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000012", "pred" : "is_a", @@ -18252,7 +18216,11 @@ }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000013", "pred" : "is_a", - "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000013", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000815" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000013", "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", @@ -18268,7 +18236,11 @@ }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000014", "pred" : "is_a", - "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000014", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000812" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000014", "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", @@ -18280,7 +18252,11 @@ }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000015", "pred" : "is_a", - "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000015", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000805" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000015", "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", @@ -18296,7 +18272,11 @@ }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000016", "pred" : "is_a", - "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000016", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000809" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000016", "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", @@ -18312,7 +18292,11 @@ }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000017", "pred" : "is_a", - "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000017", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000810" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000017", "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", @@ -18324,7 +18308,11 @@ }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000018", "pred" : "is_a", - "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000018", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000806" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000018", "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", @@ -18336,7 +18324,11 @@ }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000019", "pred" : "is_a", - "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000019", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000807" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000019", "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", @@ -18348,7 +18340,11 @@ }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000020", "pred" : "is_a", - "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000020", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000808" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000020", "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", @@ -18360,7 +18356,11 @@ }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000021", "pred" : "is_a", - "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000021", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000811" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000021", "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", @@ -18376,11 +18376,19 @@ }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000022", "pred" : "is_a", - "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000022", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000804" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000022", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000023", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000023", "pred" : "is_a", @@ -18388,7 +18396,7 @@ }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000023", "pred" : "is_a", - "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + "obj" : "http://purl.obolibrary.org/obo/WBls_0000817" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000023", "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", @@ -18397,6 +18405,10 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000023", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000024", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000024", "pred" : "is_a", @@ -18404,7 +18416,7 @@ }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000024", "pred" : "is_a", - "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + "obj" : "http://purl.obolibrary.org/obo/WBls_0000818" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000024", "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", @@ -18413,6 +18425,10 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000024", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000025", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000025", "pred" : "is_a", @@ -18421,6 +18437,10 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000025", "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", "obj" : "http://purl.obolibrary.org/obo/WBls_0000026" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000026", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000026", "pred" : "is_a", @@ -18440,7 +18460,7 @@ }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000027", "pred" : "is_a", - "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + "obj" : "http://purl.obolibrary.org/obo/WBls_0000819" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000027", "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", @@ -18453,6 +18473,10 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000027", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000026" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000028", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000028", "pred" : "is_a", @@ -18461,6 +18485,10 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000028", "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", "obj" : "http://purl.obolibrary.org/obo/WBls_0000029" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000029", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000029", "pred" : "is_a", @@ -18473,6 +18501,10 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000029", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000027" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000030", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000030", "pred" : "is_a", @@ -18481,6 +18513,10 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000030", "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", "obj" : "http://purl.obolibrary.org/obo/WBls_0000031" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000031", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000031", "pred" : "is_a", @@ -18492,7 +18528,11 @@ }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000032", "pred" : "is_a", - "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000032", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000817" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000032", "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", @@ -18501,6 +18541,10 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000032", "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", "obj" : "http://purl.obolibrary.org/obo/WBls_0000027" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000033", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000033", "pred" : "is_a", @@ -18509,6 +18553,10 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000033", "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", "obj" : "http://purl.obolibrary.org/obo/WBls_0000034" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000034", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000034", "pred" : "is_a", @@ -18524,7 +18572,7 @@ }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000035", "pred" : "is_a", - "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + "obj" : "http://purl.obolibrary.org/obo/WBls_0000820" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000035", "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", @@ -18537,6 +18585,10 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000035", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000029" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000036", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000036", "pred" : "is_a", @@ -18545,6 +18597,10 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000036", "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", "obj" : "http://purl.obolibrary.org/obo/WBls_0000037" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000037", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000037", "pred" : "is_a", @@ -18564,7 +18620,7 @@ }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000038", "pred" : "is_a", - "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + "obj" : "http://purl.obolibrary.org/obo/WBls_0000821" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000038", "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", @@ -18581,6 +18637,10 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000038", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000037" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000039", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000039", "pred" : "is_a", @@ -18589,6 +18649,10 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000039", "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", "obj" : "http://purl.obolibrary.org/obo/WBls_0000040" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000040", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000040", "pred" : "is_a", @@ -18604,7 +18668,7 @@ }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000041", "pred" : "is_a", - "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + "obj" : "http://purl.obolibrary.org/obo/WBls_0000816" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000041", "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", @@ -18621,6 +18685,10 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000041", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000040" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000042", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000042", "pred" : "is_a", @@ -18633,6 +18701,10 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000042", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000025" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000043", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000043", "pred" : "is_a", @@ -18641,6 +18713,10 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000043", "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", "obj" : "http://purl.obolibrary.org/obo/WBls_0000023" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000044", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000044", "pred" : "is_a", @@ -18649,6 +18725,10 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000044", "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", "obj" : "http://purl.obolibrary.org/obo/WBls_0000043" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000045", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000045", "pred" : "is_a", @@ -18660,11 +18740,19 @@ }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000046", "pred" : "is_a", - "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000046", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000817" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000046", "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", "obj" : "http://purl.obolibrary.org/obo/WBls_0000023" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000047", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000047", "pred" : "is_a", @@ -18677,6 +18765,10 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000047", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000028" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000048", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000048", "pred" : "is_a", @@ -18685,6 +18777,10 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000048", "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", "obj" : "http://purl.obolibrary.org/obo/WBls_0000031" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000049", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000049", "pred" : "is_a", @@ -18697,6 +18793,10 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000049", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000036" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000050", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000050", "pred" : "is_a", @@ -18709,6 +18809,10 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000050", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000039" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000051", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000051", "pred" : "is_a", @@ -18717,6 +18821,10 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000051", "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", "obj" : "http://purl.obolibrary.org/obo/WBls_0000034" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000052", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000817" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000052", "pred" : "is_a", @@ -18725,6 +18833,10 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000052", "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", "obj" : "http://purl.obolibrary.org/obo/WBls_0000023" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000053", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000053", "pred" : "is_a", @@ -18733,6 +18845,10 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000053", "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", "obj" : "http://purl.obolibrary.org/obo/WBls_0000046" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000054", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000054", "pred" : "is_a", @@ -18741,6 +18857,10 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000054", "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", "obj" : "http://purl.obolibrary.org/obo/WBls_0000053" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000055", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000055", "pred" : "is_a", @@ -18760,7 +18880,11 @@ }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000058", "pred" : "is_a", - "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000058", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000816" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000058", "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", @@ -18772,7 +18896,11 @@ }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000060", "pred" : "is_a", - "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000060", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000816" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000060", "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", @@ -18780,7 +18908,11 @@ }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000061", "pred" : "is_a", - "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000061", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000816" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000061", "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", @@ -18788,7 +18920,11 @@ }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000062", "pred" : "is_a", - "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000062", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000816" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000062", "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", @@ -18796,7 +18932,11 @@ }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000063", "pred" : "is_a", - "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000063", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000816" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000063", "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", @@ -18804,7 +18944,11 @@ }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000064", "pred" : "is_a", - "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000064", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000816" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000064", "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", @@ -18812,7 +18956,11 @@ }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000065", "pred" : "is_a", - "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000065", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000816" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000065", "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", @@ -18824,7 +18972,11 @@ }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000066", "pred" : "is_a", - "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000066", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000816" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000066", "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", @@ -18836,7 +18988,11 @@ }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000067", "pred" : "is_a", - "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000067", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000816" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000067", "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", @@ -18848,7 +19004,11 @@ }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000068", "pred" : "is_a", - "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000068", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000816" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000068", "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", @@ -18860,7 +19020,11 @@ }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000069", "pred" : "is_a", - "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000069", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000816" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000069", "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", @@ -18872,7 +19036,11 @@ }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000070", "pred" : "is_a", - "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000070", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000816" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000070", "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", @@ -18881,6 +19049,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000070", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000069" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000071", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000071", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000071", "pred" : "is_a", @@ -18893,6 +19069,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000071", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000008" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000072", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000072", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000072", "pred" : "is_a", @@ -18912,7 +19096,11 @@ }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000074", "pred" : "is_a", - "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000074", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000816" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000074", "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", @@ -18937,6 +19125,10 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000077", "pred" : "is_a", "obj" : "http://purl.obolibrary.org/obo/WBls_0000665" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000079", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000079", "pred" : "is_a", @@ -18997,6 +19189,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000083", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000100" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000084", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000084", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000084", "pred" : "is_a", @@ -19009,6 +19209,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000084", "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", "obj" : "http://purl.obolibrary.org/obo/WBls_0000072" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000085", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000085", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000085", "pred" : "is_a", @@ -19021,6 +19229,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000085", "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", "obj" : "http://purl.obolibrary.org/obo/WBls_0000084" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000086", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000086", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000086", "pred" : "is_a", @@ -19033,6 +19249,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000086", "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", "obj" : "http://purl.obolibrary.org/obo/WBls_0000009" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000087", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000087", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000087", "pred" : "is_a", @@ -19045,6 +19269,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000087", "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", "obj" : "http://purl.obolibrary.org/obo/WBls_0000011" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000088", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000088", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000088", "pred" : "is_a", @@ -19057,6 +19289,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000088", "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", "obj" : "http://purl.obolibrary.org/obo/WBls_0000087" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000089", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000089", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000089", "pred" : "is_a", @@ -19069,6 +19309,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000089", "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", "obj" : "http://purl.obolibrary.org/obo/WBls_0000090" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000090", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000090", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000090", "pred" : "is_a", @@ -19093,6 +19341,10 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000092", "pred" : "is_a", "obj" : "http://purl.obolibrary.org/obo/WBls_0000102" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000093", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000093", "pred" : "is_a", @@ -19109,6 +19361,10 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000094", "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", "obj" : "http://purl.obolibrary.org/obo/WBls_0000092" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000095", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000095", "pred" : "is_a", @@ -19121,6 +19377,10 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000095", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000094" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000096", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000096", "pred" : "is_a", @@ -19133,6 +19393,10 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000096", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000095" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000097", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000097", "pred" : "is_a", @@ -19153,6 +19417,10 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000098", "pred" : "is_a", "obj" : "http://purl.obolibrary.org/obo/WBls_0000679" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000099", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000099", "pred" : "is_a", @@ -19161,6 +19429,10 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000099", "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", "obj" : "http://purl.obolibrary.org/obo/WBls_0000081" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000100", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000100", "pred" : "is_a", @@ -19181,6 +19453,10 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000102", "pred" : "is_a", "obj" : "http://purl.obolibrary.org/obo/WBls_0000101" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000103", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000103", "pred" : "is_a", @@ -19189,6 +19465,10 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000103", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000102" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000104", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000104", "pred" : "is_a", @@ -19205,6 +19485,10 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000106", "pred" : "is_a", "obj" : "http://purl.obolibrary.org/obo/WBls_0000105" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000107", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000107", "pred" : "is_a", @@ -19213,6 +19497,10 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000107", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000106" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000108", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000108", "pred" : "is_a", @@ -19221,6 +19509,10 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000108", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000107" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000109", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000109", "pred" : "is_a", @@ -19236,7 +19528,11 @@ }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000111", "pred" : "is_a", - "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000111", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000816" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000111", "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", @@ -19249,6 +19545,10 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000111", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000074" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000112", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000112", "pred" : "is_a", @@ -19257,6 +19557,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000112", "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000113", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000113", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000113", "pred" : "is_a", @@ -19269,6 +19577,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000113", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000112" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000114", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000114", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000114", "pred" : "is_a", @@ -19281,6 +19597,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000114", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000113" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000115", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000115", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000115", "pred" : "is_a", @@ -19293,6 +19617,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000115", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000114" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000116", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000116", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000116", "pred" : "is_a", @@ -19305,6 +19637,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000116", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000115" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000117", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000117", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000117", "pred" : "is_a", @@ -19317,6 +19657,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000117", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000116" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000118", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000118", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000118", "pred" : "is_a", @@ -19329,6 +19677,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000118", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000117" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000119", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000119", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000119", "pred" : "is_a", @@ -19341,6 +19697,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000119", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000118" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000120", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000120", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000120", "pred" : "is_a", @@ -19353,6 +19717,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000120", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000119" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000121", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000121", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000121", "pred" : "is_a", @@ -19365,6 +19737,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000121", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000120" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000122", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000122", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000122", "pred" : "is_a", @@ -19377,6 +19757,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000122", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000121" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000123", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000123", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000123", "pred" : "is_a", @@ -19389,6 +19777,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000123", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000122" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000124", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000124", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000124", "pred" : "is_a", @@ -19401,6 +19797,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000124", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000123" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000125", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000125", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000125", "pred" : "is_a", @@ -19413,6 +19817,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000125", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000124" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000126", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000126", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000126", "pred" : "is_a", @@ -19425,6 +19837,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000126", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000125" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000127", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000127", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000127", "pred" : "is_a", @@ -19437,6 +19857,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000127", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000126" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000128", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000128", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000128", "pred" : "is_a", @@ -19449,6 +19877,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000128", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000127" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000129", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000129", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000129", "pred" : "is_a", @@ -19461,6 +19897,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000129", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000128" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000130", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000130", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000130", "pred" : "is_a", @@ -19473,6 +19917,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000130", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000129" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000131", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000131", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000131", "pred" : "is_a", @@ -19485,6 +19937,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000131", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000130" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000132", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000132", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000132", "pred" : "is_a", @@ -19497,6 +19957,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000132", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000131" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000133", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000133", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000133", "pred" : "is_a", @@ -19509,6 +19977,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000133", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000132" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000134", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000134", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000134", "pred" : "is_a", @@ -19524,15 +20000,31 @@ }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000135", "pred" : "is_a", - "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000135", - "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", - "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000135", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000822" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000135", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000005" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000135", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000134" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000136", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000136", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000136", "pred" : "is_a", @@ -19545,6 +20037,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000136", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000135" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000137", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000137", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000137", "pred" : "is_a", @@ -19557,6 +20057,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000137", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000136" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000138", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000138", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000138", "pred" : "is_a", @@ -19569,6 +20077,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000138", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000137" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000139", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000139", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000139", "pred" : "is_a", @@ -19581,6 +20097,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000139", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000138" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000140", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000140", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000140", "pred" : "is_a", @@ -19593,6 +20117,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000140", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000139" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000141", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000141", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000141", "pred" : "is_a", @@ -19605,6 +20137,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000141", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000140" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000142", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000142", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000142", "pred" : "is_a", @@ -19617,6 +20157,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000142", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000141" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000143", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000143", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000143", "pred" : "is_a", @@ -19629,6 +20177,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000143", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000142" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000144", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000144", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000144", "pred" : "is_a", @@ -19641,6 +20197,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000144", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000143" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000145", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000145", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000145", "pred" : "is_a", @@ -19653,6 +20217,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000145", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000144" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000146", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000146", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000146", "pred" : "is_a", @@ -19665,6 +20237,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000146", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000145" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000147", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000147", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000147", "pred" : "is_a", @@ -19677,6 +20257,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000147", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000146" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000148", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000148", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000148", "pred" : "is_a", @@ -19689,6 +20277,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000148", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000147" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000149", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000149", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000149", "pred" : "is_a", @@ -19701,6 +20297,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000149", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000148" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000150", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000150", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000150", "pred" : "is_a", @@ -19713,6 +20317,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000150", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000149" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000151", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000151", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000151", "pred" : "is_a", @@ -19725,6 +20337,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000151", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000150" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000152", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000152", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000152", "pred" : "is_a", @@ -19737,6 +20357,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000152", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000151" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000153", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000153", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000153", "pred" : "is_a", @@ -19749,6 +20377,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000153", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000152" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000154", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000154", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000154", "pred" : "is_a", @@ -19761,6 +20397,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000154", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000153" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000155", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000155", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000155", "pred" : "is_a", @@ -19773,6 +20417,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000155", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000154" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000156", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000156", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000156", "pred" : "is_a", @@ -19785,6 +20437,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000156", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000155" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000157", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000157", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000157", "pred" : "is_a", @@ -19797,6 +20457,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000157", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000156" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000158", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000158", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000158", "pred" : "is_a", @@ -19809,6 +20477,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000158", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000157" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000159", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000159", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000159", "pred" : "is_a", @@ -19821,6 +20497,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000159", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000158" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000160", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000160", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000160", "pred" : "is_a", @@ -19833,6 +20517,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000160", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000159" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000161", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000161", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000161", "pred" : "is_a", @@ -19845,6 +20537,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000161", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000160" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000162", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000162", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000162", "pred" : "is_a", @@ -19857,6 +20557,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000162", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000161" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000163", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000163", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000163", "pred" : "is_a", @@ -19869,6 +20577,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000163", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000162" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000164", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000164", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000164", "pred" : "is_a", @@ -19881,6 +20597,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000164", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000163" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000165", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000165", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000165", "pred" : "is_a", @@ -19893,6 +20617,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000165", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000164" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000166", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000166", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000166", "pred" : "is_a", @@ -19905,6 +20637,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000166", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000165" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000167", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000167", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000167", "pred" : "is_a", @@ -19917,6 +20657,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000167", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000166" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000168", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000168", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000168", "pred" : "is_a", @@ -19929,6 +20677,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000168", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000167" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000169", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000169", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000169", "pred" : "is_a", @@ -19941,6 +20697,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000169", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000168" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000170", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000170", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000170", "pred" : "is_a", @@ -19953,6 +20717,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000170", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000169" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000171", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000171", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000171", "pred" : "is_a", @@ -19965,6 +20737,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000171", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000170" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000172", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000172", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000172", "pred" : "is_a", @@ -19977,6 +20757,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000172", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000171" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000173", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000173", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000173", "pred" : "is_a", @@ -19989,6 +20777,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000173", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000172" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000174", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000174", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000174", "pred" : "is_a", @@ -20001,6 +20797,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000174", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000173" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000175", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000175", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000175", "pred" : "is_a", @@ -20013,6 +20817,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000175", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000174" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000176", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000176", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000176", "pred" : "is_a", @@ -20025,6 +20837,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000176", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000175" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000177", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000177", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000177", "pred" : "is_a", @@ -20037,6 +20857,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000177", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000176" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000178", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000178", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000178", "pred" : "is_a", @@ -20049,6 +20877,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000178", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000177" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000179", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000179", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000179", "pred" : "is_a", @@ -20061,6 +20897,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000179", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000178" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000180", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000180", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000180", "pred" : "is_a", @@ -20073,6 +20917,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000180", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000179" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000181", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000181", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000181", "pred" : "is_a", @@ -20085,6 +20937,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000181", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000180" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000182", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000182", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000182", "pred" : "is_a", @@ -20097,6 +20957,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000182", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000181" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000183", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000183", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000183", "pred" : "is_a", @@ -20109,6 +20977,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000183", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000182" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000184", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000184", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000184", "pred" : "is_a", @@ -20121,6 +20997,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000184", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000183" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000185", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000185", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000185", "pred" : "is_a", @@ -20133,6 +21017,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000185", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000184" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000186", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000186", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000186", "pred" : "is_a", @@ -20145,6 +21037,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000186", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000185" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000187", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000187", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000187", "pred" : "is_a", @@ -20157,6 +21057,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000187", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000186" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000188", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000188", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000188", "pred" : "is_a", @@ -20169,6 +21077,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000188", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000187" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000189", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000189", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000189", "pred" : "is_a", @@ -20181,6 +21097,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000189", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000188" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000190", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000190", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000190", "pred" : "is_a", @@ -20193,6 +21117,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000190", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000189" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000191", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000191", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000191", "pred" : "is_a", @@ -20205,6 +21137,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000191", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000190" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000192", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000192", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000192", "pred" : "is_a", @@ -20217,6 +21157,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000192", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000191" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000193", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000193", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000193", "pred" : "is_a", @@ -20229,6 +21177,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000193", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000192" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000194", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000194", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000194", "pred" : "is_a", @@ -20241,6 +21197,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000194", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000193" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000195", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000195", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000195", "pred" : "is_a", @@ -20253,6 +21217,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000195", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000194" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000196", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000196", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000196", "pred" : "is_a", @@ -20265,6 +21237,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000196", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000195" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000197", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000197", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000197", "pred" : "is_a", @@ -20277,6 +21257,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000197", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000196" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000198", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000198", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000198", "pred" : "is_a", @@ -20289,6 +21277,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000198", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000197" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000199", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000199", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000199", "pred" : "is_a", @@ -20301,6 +21297,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000199", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000198" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000200", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000200", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000200", "pred" : "is_a", @@ -20313,6 +21317,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000200", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000199" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000201", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000201", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000201", "pred" : "is_a", @@ -20325,6 +21337,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000201", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000200" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000202", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000202", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000202", "pred" : "is_a", @@ -20337,6 +21357,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000202", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000201" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000203", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000203", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000203", "pred" : "is_a", @@ -20349,6 +21377,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000203", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000202" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000204", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000204", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000204", "pred" : "is_a", @@ -20361,6 +21397,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000204", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000203" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000205", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000205", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000205", "pred" : "is_a", @@ -20373,6 +21417,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000205", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000204" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000206", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000206", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000206", "pred" : "is_a", @@ -20385,6 +21437,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000206", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000205" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000207", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000207", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000207", "pred" : "is_a", @@ -20397,6 +21457,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000207", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000206" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000208", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000208", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000208", "pred" : "is_a", @@ -20409,6 +21477,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000208", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000207" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000209", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000209", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000209", "pred" : "is_a", @@ -20421,6 +21497,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000209", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000208" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000210", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000210", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000210", "pred" : "is_a", @@ -20433,6 +21517,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000210", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000209" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000211", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000211", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000813" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000211", "pred" : "is_a", @@ -20445,6 +21537,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000211", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000210" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000212", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000212", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000212", "pred" : "is_a", @@ -20457,6 +21557,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000212", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000211" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000213", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000213", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000213", "pred" : "is_a", @@ -20469,6 +21577,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000213", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000212" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000214", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000214", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000214", "pred" : "is_a", @@ -20481,6 +21597,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000214", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000213" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000215", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000215", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000215", "pred" : "is_a", @@ -20493,6 +21617,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000215", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000214" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000216", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000216", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000216", "pred" : "is_a", @@ -20505,6 +21637,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000216", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000215" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000217", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000217", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000217", "pred" : "is_a", @@ -20517,6 +21657,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000217", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000216" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000218", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000218", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000218", "pred" : "is_a", @@ -20529,6 +21677,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000218", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000217" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000219", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000219", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000219", "pred" : "is_a", @@ -20541,6 +21697,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000219", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000218" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000220", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000220", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000220", "pred" : "is_a", @@ -20553,6 +21717,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000220", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000219" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000221", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000221", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000221", "pred" : "is_a", @@ -20565,6 +21737,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000221", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000220" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000222", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000222", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000222", "pred" : "is_a", @@ -20577,6 +21757,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000222", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000221" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000223", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000223", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000223", "pred" : "is_a", @@ -20589,6 +21777,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000223", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000222" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000224", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000224", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000224", "pred" : "is_a", @@ -20601,6 +21797,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000224", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000223" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000225", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000225", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000225", "pred" : "is_a", @@ -20613,6 +21817,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000225", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000224" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000226", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000226", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000226", "pred" : "is_a", @@ -20625,6 +21837,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000226", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000225" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000227", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000227", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000227", "pred" : "is_a", @@ -20637,6 +21857,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000227", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000226" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000228", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000228", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000228", "pred" : "is_a", @@ -20649,6 +21877,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000228", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000227" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000229", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000229", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000229", "pred" : "is_a", @@ -20658,9 +21894,17 @@ "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" }, { - "sub" : "http://purl.obolibrary.org/obo/WBls_0000229", - "pred" : "http://purl.obolibrary.org/obo/RO_0002087", - "obj" : "http://purl.obolibrary.org/obo/WBls_0000228" + "sub" : "http://purl.obolibrary.org/obo/WBls_0000229", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000228" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000230", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000230", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000230", "pred" : "is_a", @@ -20673,6 +21917,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000230", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000229" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000231", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000231", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000231", "pred" : "is_a", @@ -20685,6 +21937,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000231", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000230" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000232", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000232", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000232", "pred" : "is_a", @@ -20697,6 +21957,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000232", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000231" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000233", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000233", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000233", "pred" : "is_a", @@ -20709,6 +21977,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000233", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000232" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000234", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000234", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000234", "pred" : "is_a", @@ -20721,6 +21997,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000234", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000233" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000235", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000235", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000235", "pred" : "is_a", @@ -20733,6 +22017,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000235", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000234" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000236", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000236", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000236", "pred" : "is_a", @@ -20745,6 +22037,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000236", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000235" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000237", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000237", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000237", "pred" : "is_a", @@ -20757,6 +22057,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000237", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000236" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000238", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000238", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000238", "pred" : "is_a", @@ -20769,6 +22077,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000238", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000237" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000239", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000239", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000239", "pred" : "is_a", @@ -20781,6 +22097,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000239", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000238" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000240", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000240", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000240", "pred" : "is_a", @@ -20793,6 +22117,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000240", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000239" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000241", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000241", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000241", "pred" : "is_a", @@ -20805,6 +22137,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000241", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000240" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000242", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000242", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000242", "pred" : "is_a", @@ -20817,6 +22157,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000242", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000241" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000243", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000243", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000243", "pred" : "is_a", @@ -20829,6 +22177,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000243", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000242" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000244", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000244", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000244", "pred" : "is_a", @@ -20841,6 +22197,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000244", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000243" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000245", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000245", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000245", "pred" : "is_a", @@ -20853,6 +22217,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000245", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000244" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000246", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000246", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000246", "pred" : "is_a", @@ -20865,6 +22237,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000246", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000245" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000247", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000247", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000247", "pred" : "is_a", @@ -20877,6 +22257,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000247", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000246" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000248", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000248", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000248", "pred" : "is_a", @@ -20889,6 +22277,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000248", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000247" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000249", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000249", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000249", "pred" : "is_a", @@ -20901,6 +22297,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000249", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000248" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000250", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000250", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000250", "pred" : "is_a", @@ -20913,6 +22317,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000250", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000249" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000251", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000251", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000251", "pred" : "is_a", @@ -20925,6 +22337,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000251", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000250" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000252", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000252", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000252", "pred" : "is_a", @@ -20937,6 +22357,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000252", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000251" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000253", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000253", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000253", "pred" : "is_a", @@ -20949,6 +22377,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000253", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000252" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000254", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000254", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000254", "pred" : "is_a", @@ -20961,6 +22397,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000254", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000253" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000255", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000255", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000255", "pred" : "is_a", @@ -20973,6 +22417,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000255", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000254" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000256", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000256", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000256", "pred" : "is_a", @@ -20985,6 +22437,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000256", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000255" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000257", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000257", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000257", "pred" : "is_a", @@ -20997,6 +22457,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000257", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000256" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000258", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000258", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000258", "pred" : "is_a", @@ -21009,6 +22477,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000258", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000257" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000259", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000259", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000259", "pred" : "is_a", @@ -21021,6 +22497,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000259", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000258" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000260", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000260", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000260", "pred" : "is_a", @@ -21033,6 +22517,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000260", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000259" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000261", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000261", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000261", "pred" : "is_a", @@ -21045,6 +22537,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000261", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000260" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000262", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000262", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000262", "pred" : "is_a", @@ -21057,6 +22557,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000262", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000261" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000263", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000263", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000263", "pred" : "is_a", @@ -21069,6 +22577,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000263", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000262" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000264", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000264", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000264", "pred" : "is_a", @@ -21081,6 +22597,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000264", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000263" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000265", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000265", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000265", "pred" : "is_a", @@ -21093,6 +22617,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000265", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000264" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000266", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000266", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000266", "pred" : "is_a", @@ -21105,6 +22637,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000266", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000265" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000267", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000267", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000267", "pred" : "is_a", @@ -21117,6 +22657,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000267", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000266" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000268", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000268", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000268", "pred" : "is_a", @@ -21129,6 +22677,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000268", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000267" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000269", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000269", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000269", "pred" : "is_a", @@ -21141,6 +22697,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000269", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000268" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000270", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000270", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000270", "pred" : "is_a", @@ -21153,6 +22717,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000270", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000269" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000271", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000271", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000271", "pred" : "is_a", @@ -21165,6 +22737,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000271", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000270" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000272", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000272", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000272", "pred" : "is_a", @@ -21177,6 +22757,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000272", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000271" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000273", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000273", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000273", "pred" : "is_a", @@ -21189,6 +22777,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000273", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000272" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000274", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000274", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000274", "pred" : "is_a", @@ -21201,6 +22797,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000274", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000273" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000275", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000275", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000275", "pred" : "is_a", @@ -21213,6 +22817,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000275", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000274" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000276", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000276", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000276", "pred" : "is_a", @@ -21225,6 +22837,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000276", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000275" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000277", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000277", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000277", "pred" : "is_a", @@ -21237,6 +22857,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000277", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000276" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000278", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000278", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000278", "pred" : "is_a", @@ -21249,6 +22877,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000278", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000277" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000279", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000279", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000279", "pred" : "is_a", @@ -21261,6 +22897,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000279", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000278" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000280", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000280", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000280", "pred" : "is_a", @@ -21273,6 +22917,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000280", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000279" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000281", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000281", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000281", "pred" : "is_a", @@ -21285,6 +22937,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000281", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000280" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000282", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000282", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000282", "pred" : "is_a", @@ -21297,6 +22957,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000282", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000281" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000283", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000283", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000283", "pred" : "is_a", @@ -21309,6 +22977,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000283", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000282" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000284", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000284", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000284", "pred" : "is_a", @@ -21321,6 +22997,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000284", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000283" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000285", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000285", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000285", "pred" : "is_a", @@ -21333,6 +23017,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000285", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000284" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000286", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000286", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000286", "pred" : "is_a", @@ -21345,6 +23037,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000286", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000285" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000287", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000287", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000287", "pred" : "is_a", @@ -21357,6 +23057,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000287", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000286" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000288", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000288", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000288", "pred" : "is_a", @@ -21369,6 +23077,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000288", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000287" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000289", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000289", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000289", "pred" : "is_a", @@ -21381,6 +23097,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000289", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000288" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000290", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000290", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000290", "pred" : "is_a", @@ -21393,6 +23117,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000290", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000289" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000291", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000291", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000291", "pred" : "is_a", @@ -21405,6 +23137,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000291", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000290" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000292", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000292", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000292", "pred" : "is_a", @@ -21417,6 +23157,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000292", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000291" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000293", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000293", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000293", "pred" : "is_a", @@ -21429,6 +23177,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000293", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000292" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000294", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000294", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000294", "pred" : "is_a", @@ -21441,6 +23197,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000294", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000293" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000295", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000295", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000295", "pred" : "is_a", @@ -21453,6 +23217,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000295", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000294" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000296", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000296", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000296", "pred" : "is_a", @@ -21465,6 +23237,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000296", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000295" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000297", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000297", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000297", "pred" : "is_a", @@ -21477,6 +23257,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000297", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000296" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000298", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000298", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000298", "pred" : "is_a", @@ -21489,6 +23277,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000298", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000297" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000299", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000299", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000299", "pred" : "is_a", @@ -21501,6 +23297,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000299", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000298" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000300", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000300", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000300", "pred" : "is_a", @@ -21513,6 +23317,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000300", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000299" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000301", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000301", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000301", "pred" : "is_a", @@ -21525,6 +23337,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000301", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000300" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000302", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000302", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000302", "pred" : "is_a", @@ -21537,6 +23357,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000302", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000301" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000303", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000303", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000303", "pred" : "is_a", @@ -21549,6 +23377,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000303", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000302" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000304", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000304", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000304", "pred" : "is_a", @@ -21561,6 +23397,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000304", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000303" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000305", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000305", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000305", "pred" : "is_a", @@ -21573,6 +23417,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000305", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000304" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000306", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000306", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000306", "pred" : "is_a", @@ -21585,6 +23437,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000306", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000305" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000307", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000307", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000307", "pred" : "is_a", @@ -21597,6 +23457,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000307", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000306" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000308", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000308", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000308", "pred" : "is_a", @@ -21609,6 +23477,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000308", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000307" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000309", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000309", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000309", "pred" : "is_a", @@ -21621,6 +23497,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000309", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000308" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000310", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000310", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000310", "pred" : "is_a", @@ -21633,6 +23517,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000310", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000309" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000311", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000311", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000311", "pred" : "is_a", @@ -21645,6 +23537,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000311", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000310" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000312", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000312", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000312", "pred" : "is_a", @@ -21657,6 +23557,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000312", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000311" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000313", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000313", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000313", "pred" : "is_a", @@ -21669,6 +23577,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000313", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000312" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000314", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000314", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000314", "pred" : "is_a", @@ -21681,6 +23597,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000314", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000313" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000315", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000315", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000315", "pred" : "is_a", @@ -21693,6 +23617,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000315", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000314" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000316", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000316", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000316", "pred" : "is_a", @@ -21705,6 +23637,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000316", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000315" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000317", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000317", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000317", "pred" : "is_a", @@ -21717,6 +23657,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000317", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000316" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000318", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000318", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000318", "pred" : "is_a", @@ -21729,6 +23677,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000318", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000317" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000319", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000319", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000319", "pred" : "is_a", @@ -21741,6 +23697,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000319", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000318" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000320", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000320", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000320", "pred" : "is_a", @@ -21753,6 +23717,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000320", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000319" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000321", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000321", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000321", "pred" : "is_a", @@ -21765,6 +23737,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000321", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000320" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000322", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000322", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000322", "pred" : "is_a", @@ -21777,6 +23757,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000322", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000321" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000323", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000323", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000323", "pred" : "is_a", @@ -21789,6 +23777,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000323", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000322" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000324", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000324", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000324", "pred" : "is_a", @@ -21801,6 +23797,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000324", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000323" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000325", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000325", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000325", "pred" : "is_a", @@ -21813,6 +23817,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000325", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000324" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000326", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000326", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000326", "pred" : "is_a", @@ -21825,6 +23837,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000326", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000325" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000327", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000327", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000327", "pred" : "is_a", @@ -21837,6 +23857,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000327", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000326" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000328", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000328", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000328", "pred" : "is_a", @@ -21849,6 +23877,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000328", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000327" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000329", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000329", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000329", "pred" : "is_a", @@ -21861,6 +23897,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000329", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000328" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000330", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000330", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000330", "pred" : "is_a", @@ -21873,6 +23917,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000330", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000329" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000331", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000331", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000331", "pred" : "is_a", @@ -21885,6 +23937,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000331", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000330" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000332", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000332", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000332", "pred" : "is_a", @@ -21897,6 +23957,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000332", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000331" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000333", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000333", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000333", "pred" : "is_a", @@ -21909,6 +23977,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000333", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000332" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000334", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000334", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000334", "pred" : "is_a", @@ -21921,6 +23997,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000334", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000333" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000335", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000335", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000335", "pred" : "is_a", @@ -21933,6 +24017,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000335", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000334" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000336", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000336", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000336", "pred" : "is_a", @@ -21945,6 +24037,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000336", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000335" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000337", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000337", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000337", "pred" : "is_a", @@ -21957,6 +24057,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000337", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000336" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000338", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000338", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000338", "pred" : "is_a", @@ -21969,6 +24077,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000338", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000337" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000339", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000339", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000339", "pred" : "is_a", @@ -21981,6 +24097,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000339", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000338" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000340", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000340", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000340", "pred" : "is_a", @@ -21993,6 +24117,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000340", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000339" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000341", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000341", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000341", "pred" : "is_a", @@ -22005,6 +24137,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000341", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000340" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000342", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000342", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000342", "pred" : "is_a", @@ -22017,6 +24157,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000342", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000341" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000343", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000343", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000343", "pred" : "is_a", @@ -22029,6 +24177,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000343", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000342" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000344", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000344", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000344", "pred" : "is_a", @@ -22041,6 +24197,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000344", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000343" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000345", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000345", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000345", "pred" : "is_a", @@ -22053,6 +24217,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000345", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000344" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000346", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000346", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000346", "pred" : "is_a", @@ -22065,6 +24237,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000346", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000345" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000347", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000347", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000347", "pred" : "is_a", @@ -22077,6 +24257,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000347", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000346" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000348", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000348", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000348", "pred" : "is_a", @@ -22089,6 +24277,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000348", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000347" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000349", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000349", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000349", "pred" : "is_a", @@ -22101,6 +24297,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000349", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000348" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000350", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000350", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000350", "pred" : "is_a", @@ -22113,6 +24317,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000350", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000349" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000351", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000351", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000351", "pred" : "is_a", @@ -22125,6 +24337,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000351", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000350" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000352", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000352", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000352", "pred" : "is_a", @@ -22137,6 +24357,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000352", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000351" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000353", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000353", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000353", "pred" : "is_a", @@ -22149,6 +24377,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000353", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000352" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000354", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000354", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000354", "pred" : "is_a", @@ -22161,6 +24397,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000354", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000353" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000355", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000355", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000355", "pred" : "is_a", @@ -22173,6 +24417,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000355", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000354" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000356", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000356", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000356", "pred" : "is_a", @@ -22182,9 +24434,17 @@ "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", "obj" : "http://purl.obolibrary.org/obo/WBls_0000010" }, { - "sub" : "http://purl.obolibrary.org/obo/WBls_0000356", - "pred" : "http://purl.obolibrary.org/obo/RO_0002087", - "obj" : "http://purl.obolibrary.org/obo/WBls_0000355" + "sub" : "http://purl.obolibrary.org/obo/WBls_0000356", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000355" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000357", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000357", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000357", "pred" : "is_a", @@ -22197,6 +24457,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000357", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000356" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000358", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000358", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000358", "pred" : "is_a", @@ -22209,6 +24477,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000358", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000357" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000359", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000359", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000359", "pred" : "is_a", @@ -22221,6 +24497,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000359", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000358" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000360", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000360", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000360", "pred" : "is_a", @@ -22233,6 +24517,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000360", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000359" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000361", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000361", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000361", "pred" : "is_a", @@ -22245,6 +24537,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000361", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000360" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000362", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000362", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000362", "pred" : "is_a", @@ -22257,6 +24557,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000362", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000361" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000363", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000363", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000363", "pred" : "is_a", @@ -22269,6 +24577,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000363", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000362" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000364", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000364", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000364", "pred" : "is_a", @@ -22281,6 +24597,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000364", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000363" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000365", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000365", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000365", "pred" : "is_a", @@ -22293,6 +24617,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000365", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000364" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000366", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000366", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000366", "pred" : "is_a", @@ -22305,6 +24637,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000366", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000365" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000367", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000367", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000367", "pred" : "is_a", @@ -22317,6 +24657,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000367", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000366" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000368", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000368", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000368", "pred" : "is_a", @@ -22329,6 +24677,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000368", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000367" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000369", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000369", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000369", "pred" : "is_a", @@ -22341,6 +24697,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000369", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000368" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000370", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000370", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000370", "pred" : "is_a", @@ -22353,6 +24717,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000370", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000369" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000371", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000371", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000371", "pred" : "is_a", @@ -22365,6 +24737,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000371", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000370" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000372", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000372", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000372", "pred" : "is_a", @@ -22377,6 +24757,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000372", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000371" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000373", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000373", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000373", "pred" : "is_a", @@ -22389,6 +24777,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000373", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000372" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000374", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000374", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000374", "pred" : "is_a", @@ -22401,6 +24797,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000374", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000373" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000375", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000375", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000375", "pred" : "is_a", @@ -22413,6 +24817,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000375", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000374" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000376", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000376", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000376", "pred" : "is_a", @@ -22425,6 +24837,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000376", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000375" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000377", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000377", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000377", "pred" : "is_a", @@ -22437,6 +24857,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000377", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000376" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000378", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000378", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000378", "pred" : "is_a", @@ -22449,6 +24877,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000378", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000377" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000379", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000379", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000379", "pred" : "is_a", @@ -22461,6 +24897,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000379", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000378" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000380", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000380", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000380", "pred" : "is_a", @@ -22473,6 +24917,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000380", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000379" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000381", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000381", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000381", "pred" : "is_a", @@ -22485,6 +24937,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000381", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000380" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000382", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000382", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000382", "pred" : "is_a", @@ -22497,6 +24957,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000382", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000381" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000383", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000383", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000383", "pred" : "is_a", @@ -22509,6 +24977,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000383", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000382" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000384", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000384", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000384", "pred" : "is_a", @@ -22521,6 +24997,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000384", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000383" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000385", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000385", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000385", "pred" : "is_a", @@ -22533,6 +25017,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000385", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000384" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000386", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000386", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000386", "pred" : "is_a", @@ -22545,6 +25037,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000386", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000385" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000387", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000387", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000387", "pred" : "is_a", @@ -22557,6 +25057,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000387", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000386" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000388", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000388", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000388", "pred" : "is_a", @@ -22569,6 +25077,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000388", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000387" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000389", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000389", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000389", "pred" : "is_a", @@ -22581,6 +25097,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000389", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000388" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000390", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000390", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000390", "pred" : "is_a", @@ -22593,6 +25117,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000390", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000389" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000391", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000391", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000391", "pred" : "is_a", @@ -22605,6 +25137,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000391", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000390" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000392", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000392", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000392", "pred" : "is_a", @@ -22617,6 +25157,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000392", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000391" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000393", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000393", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000393", "pred" : "is_a", @@ -22629,6 +25177,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000393", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000392" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000394", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000394", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000394", "pred" : "is_a", @@ -22641,6 +25197,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000394", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000393" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000395", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000395", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000395", "pred" : "is_a", @@ -22653,6 +25217,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000395", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000394" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000396", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000396", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000396", "pred" : "is_a", @@ -22665,6 +25237,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000396", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000395" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000397", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000397", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000397", "pred" : "is_a", @@ -22677,6 +25257,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000397", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000396" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000398", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000398", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000398", "pred" : "is_a", @@ -22689,6 +25277,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000398", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000397" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000399", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000399", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000399", "pred" : "is_a", @@ -22701,6 +25297,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000399", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000398" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000400", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000400", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000400", "pred" : "is_a", @@ -22713,6 +25317,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000400", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000399" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000401", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000401", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000814" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000401", "pred" : "is_a", @@ -22725,6 +25337,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000401", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000400" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000402", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000402", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000815" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000402", "pred" : "is_a", @@ -22737,6 +25357,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000402", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000401" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000403", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000403", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000815" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000403", "pred" : "is_a", @@ -22749,6 +25377,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000403", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000402" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000404", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000404", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000815" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000404", "pred" : "is_a", @@ -22761,6 +25397,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000404", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000403" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000405", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000405", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000815" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000405", "pred" : "is_a", @@ -22773,6 +25417,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000405", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000404" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000406", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000406", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000815" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000406", "pred" : "is_a", @@ -22785,6 +25437,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000406", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000405" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000407", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000407", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000815" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000407", "pred" : "is_a", @@ -22797,6 +25457,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000407", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000406" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000408", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000408", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000815" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000408", "pred" : "is_a", @@ -22809,6 +25477,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000408", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000407" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000409", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000409", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000815" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000409", "pred" : "is_a", @@ -22821,6 +25497,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000409", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000408" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000410", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000410", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000815" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000410", "pred" : "is_a", @@ -22833,6 +25517,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000410", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000409" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000411", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000411", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000815" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000411", "pred" : "is_a", @@ -22845,6 +25537,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000411", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000410" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000412", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000412", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000815" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000412", "pred" : "is_a", @@ -22857,6 +25557,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000412", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000411" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000413", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000413", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000815" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000413", "pred" : "is_a", @@ -22869,6 +25577,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000413", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000412" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000414", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000414", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000815" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000414", "pred" : "is_a", @@ -22881,6 +25597,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000414", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000413" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000415", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000415", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000815" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000415", "pred" : "is_a", @@ -22893,6 +25617,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000415", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000414" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000416", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000416", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000815" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000416", "pred" : "is_a", @@ -22905,6 +25637,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000416", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000415" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000417", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000417", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000815" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000417", "pred" : "is_a", @@ -22917,6 +25657,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000417", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000416" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000418", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000418", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000815" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000418", "pred" : "is_a", @@ -22929,6 +25677,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000418", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000417" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000419", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000419", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000815" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000419", "pred" : "is_a", @@ -22941,6 +25697,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000419", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000418" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000420", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000420", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000815" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000420", "pred" : "is_a", @@ -22953,6 +25717,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000420", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000419" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000421", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000421", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000815" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000421", "pred" : "is_a", @@ -22965,6 +25737,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000421", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000420" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000422", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000422", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000815" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000422", "pred" : "is_a", @@ -22977,6 +25757,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000422", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000421" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000423", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000423", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000815" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000423", "pred" : "is_a", @@ -22989,6 +25777,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000423", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000422" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000424", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000424", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000815" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000424", "pred" : "is_a", @@ -23001,6 +25797,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000424", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000423" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000425", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000425", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000815" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000425", "pred" : "is_a", @@ -23013,6 +25817,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000425", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000424" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000426", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000426", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000815" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000426", "pred" : "is_a", @@ -23025,6 +25837,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000426", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000425" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000427", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000427", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000815" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000427", "pred" : "is_a", @@ -23037,6 +25857,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000427", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000426" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000428", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000428", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000815" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000428", "pred" : "is_a", @@ -23049,6 +25877,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000428", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000427" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000429", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000429", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000815" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000429", "pred" : "is_a", @@ -23061,6 +25897,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000429", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000428" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000430", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000430", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000815" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000430", "pred" : "is_a", @@ -23073,6 +25917,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000430", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000429" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000431", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000431", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000815" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000431", "pred" : "is_a", @@ -23085,6 +25937,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000431", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000430" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000432", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000432", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000815" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000432", "pred" : "is_a", @@ -23097,6 +25957,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000432", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000431" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000433", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000433", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000815" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000433", "pred" : "is_a", @@ -23109,6 +25977,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000433", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000432" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000434", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000434", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000815" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000434", "pred" : "is_a", @@ -23121,6 +25997,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000434", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000433" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000435", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000435", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000815" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000435", "pred" : "is_a", @@ -23133,6 +26017,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000435", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000434" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000436", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000436", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000815" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000436", "pred" : "is_a", @@ -23145,6 +26037,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000436", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000435" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000437", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000437", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000815" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000437", "pred" : "is_a", @@ -23157,6 +26057,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000437", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000436" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000438", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000438", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000815" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000438", "pred" : "is_a", @@ -23169,6 +26077,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000438", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000437" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000439", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000439", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000815" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000439", "pred" : "is_a", @@ -23181,6 +26097,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000439", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000438" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000440", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000440", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000815" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000440", "pred" : "is_a", @@ -23193,6 +26117,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000440", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000439" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000441", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000441", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000815" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000441", "pred" : "is_a", @@ -23205,6 +26137,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000441", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000440" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000442", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000442", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000815" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000442", "pred" : "is_a", @@ -23217,6 +26157,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000442", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000441" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000443", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000443", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000815" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000443", "pred" : "is_a", @@ -23229,6 +26177,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000443", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000442" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000444", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000444", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000815" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000444", "pred" : "is_a", @@ -23241,6 +26197,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000444", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000443" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000445", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000445", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000815" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000445", "pred" : "is_a", @@ -23253,6 +26217,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000445", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000444" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000446", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000446", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000815" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000446", "pred" : "is_a", @@ -23265,6 +26237,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000446", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000445" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000447", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000447", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000815" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000447", "pred" : "is_a", @@ -23277,6 +26257,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000447", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000446" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000448", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000448", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000815" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000448", "pred" : "is_a", @@ -23289,6 +26277,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000448", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000447" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000449", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000449", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000815" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000449", "pred" : "is_a", @@ -23301,6 +26297,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000449", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000448" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000450", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000450", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000815" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000450", "pred" : "is_a", @@ -23313,6 +26317,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000450", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000449" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000451", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000451", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000815" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000451", "pred" : "is_a", @@ -23325,6 +26337,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000451", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000450" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000452", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000452", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000815" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000452", "pred" : "is_a", @@ -23337,6 +26357,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000452", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000451" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000453", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000453", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000815" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000453", "pred" : "is_a", @@ -23349,6 +26377,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000453", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000452" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000454", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000454", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000815" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000454", "pred" : "is_a", @@ -23361,6 +26397,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000454", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000453" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000455", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000455", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000815" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000455", "pred" : "is_a", @@ -23373,6 +26417,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000455", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000454" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000456", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000456", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000815" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000456", "pred" : "is_a", @@ -23385,6 +26437,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000456", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000455" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000457", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000457", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000815" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000457", "pred" : "is_a", @@ -23397,6 +26457,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000457", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000456" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000458", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000458", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000815" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000458", "pred" : "is_a", @@ -23409,6 +26477,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000458", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000457" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000459", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000459", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000815" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000459", "pred" : "is_a", @@ -23421,6 +26497,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000459", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000458" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000460", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000460", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000815" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000460", "pred" : "is_a", @@ -23433,6 +26517,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000460", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000459" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000461", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000461", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000815" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000461", "pred" : "is_a", @@ -23445,6 +26537,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000461", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000460" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000462", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000462", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000809" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000462", "pred" : "is_a", @@ -23457,6 +26557,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000462", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000461" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000463", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000463", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000809" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000463", "pred" : "is_a", @@ -23469,6 +26577,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000463", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000462" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000464", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000464", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000809" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000464", "pred" : "is_a", @@ -23481,6 +26597,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000464", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000463" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000465", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000465", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000809" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000465", "pred" : "is_a", @@ -23493,6 +26617,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000465", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000464" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000466", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000466", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000809" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000466", "pred" : "is_a", @@ -23505,6 +26637,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000466", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000465" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000467", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000467", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000809" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000467", "pred" : "is_a", @@ -23517,6 +26657,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000467", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000466" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000468", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000468", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000809" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000468", "pred" : "is_a", @@ -23529,6 +26677,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000468", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000467" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000469", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000469", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000809" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000469", "pred" : "is_a", @@ -23541,6 +26697,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000469", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000468" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000470", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000470", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000809" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000470", "pred" : "is_a", @@ -23553,6 +26717,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000470", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000469" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000471", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000471", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000809" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000471", "pred" : "is_a", @@ -23565,6 +26737,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000471", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000470" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000472", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000472", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000809" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000472", "pred" : "is_a", @@ -23577,6 +26757,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000472", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000471" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000473", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000473", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000809" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000473", "pred" : "is_a", @@ -23589,6 +26777,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000473", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000472" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000474", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000474", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000809" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000474", "pred" : "is_a", @@ -23601,6 +26797,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000474", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000473" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000475", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000475", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000809" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000475", "pred" : "is_a", @@ -23613,6 +26817,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000475", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000474" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000476", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000476", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000809" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000476", "pred" : "is_a", @@ -23625,6 +26837,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000476", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000475" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000477", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000477", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000809" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000477", "pred" : "is_a", @@ -23637,6 +26857,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000477", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000476" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000478", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000478", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000809" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000478", "pred" : "is_a", @@ -23649,6 +26877,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000478", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000477" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000479", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000479", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000809" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000479", "pred" : "is_a", @@ -23661,6 +26897,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000479", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000478" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000480", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000480", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000809" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000480", "pred" : "is_a", @@ -23673,6 +26917,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000480", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000479" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000481", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000481", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000809" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000481", "pred" : "is_a", @@ -23685,6 +26937,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000481", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000480" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000482", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000482", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000809" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000482", "pred" : "is_a", @@ -23697,6 +26957,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000482", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000481" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000483", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000483", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000809" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000483", "pred" : "is_a", @@ -23706,9 +26974,17 @@ "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", "obj" : "http://purl.obolibrary.org/obo/WBls_0000016" }, { - "sub" : "http://purl.obolibrary.org/obo/WBls_0000483", - "pred" : "http://purl.obolibrary.org/obo/RO_0002087", - "obj" : "http://purl.obolibrary.org/obo/WBls_0000482" + "sub" : "http://purl.obolibrary.org/obo/WBls_0000483", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000482" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000484", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000484", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000809" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000484", "pred" : "is_a", @@ -23721,6 +26997,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000484", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000483" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000485", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000485", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000809" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000485", "pred" : "is_a", @@ -23733,6 +27017,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000485", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000484" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000486", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000486", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000809" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000486", "pred" : "is_a", @@ -23745,6 +27037,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000486", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000485" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000487", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000487", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000809" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000487", "pred" : "is_a", @@ -23757,6 +27057,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000487", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000486" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000488", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000488", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000809" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000488", "pred" : "is_a", @@ -23769,6 +27077,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000488", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000487" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000489", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000489", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000809" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000489", "pred" : "is_a", @@ -23781,6 +27097,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000489", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000488" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000490", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000490", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000809" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000490", "pred" : "is_a", @@ -23793,6 +27117,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000490", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000489" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000491", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000491", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000809" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000491", "pred" : "is_a", @@ -23805,6 +27137,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000491", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000490" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000492", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000492", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000809" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000492", "pred" : "is_a", @@ -23817,6 +27157,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000492", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000491" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000493", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000493", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000809" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000493", "pred" : "is_a", @@ -23829,6 +27177,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000493", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000492" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000494", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000494", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000809" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000494", "pred" : "is_a", @@ -23841,6 +27197,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000494", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000493" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000495", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000495", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000809" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000495", "pred" : "is_a", @@ -23853,6 +27217,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000495", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000494" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000496", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000496", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000809" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000496", "pred" : "is_a", @@ -23865,6 +27237,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000496", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000495" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000497", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000497", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000809" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000497", "pred" : "is_a", @@ -23877,6 +27257,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000497", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000496" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000498", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000498", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000809" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000498", "pred" : "is_a", @@ -23889,6 +27277,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000498", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000497" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000499", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000499", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000809" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000499", "pred" : "is_a", @@ -23901,6 +27297,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000499", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000498" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000500", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000500", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000809" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000500", "pred" : "is_a", @@ -23913,6 +27317,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000500", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000499" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000501", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000501", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000809" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000501", "pred" : "is_a", @@ -23925,6 +27337,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000501", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000500" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000502", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000502", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000810" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000502", "pred" : "is_a", @@ -23937,6 +27357,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000502", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000501" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000503", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000503", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000810" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000503", "pred" : "is_a", @@ -23949,6 +27377,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000503", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000502" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000504", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000504", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000810" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000504", "pred" : "is_a", @@ -23961,6 +27397,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000504", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000503" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000505", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000505", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000810" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000505", "pred" : "is_a", @@ -23973,6 +27417,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000505", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000504" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000506", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000506", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000810" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000506", "pred" : "is_a", @@ -23985,6 +27437,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000506", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000505" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000507", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000507", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000810" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000507", "pred" : "is_a", @@ -23997,6 +27457,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000507", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000506" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000508", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000508", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000810" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000508", "pred" : "is_a", @@ -24009,6 +27477,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000508", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000507" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000509", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000509", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000810" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000509", "pred" : "is_a", @@ -24021,6 +27497,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000509", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000508" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000510", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000510", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000810" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000510", "pred" : "is_a", @@ -24033,6 +27517,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000510", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000509" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000511", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000511", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000810" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000511", "pred" : "is_a", @@ -24045,6 +27537,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000511", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000510" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000512", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000512", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000810" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000512", "pred" : "is_a", @@ -24057,6 +27557,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000512", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000511" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000513", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000513", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000810" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000513", "pred" : "is_a", @@ -24069,6 +27577,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000513", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000512" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000514", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000514", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000810" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000514", "pred" : "is_a", @@ -24081,6 +27597,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000514", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000513" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000515", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000515", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000810" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000515", "pred" : "is_a", @@ -24093,6 +27617,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000515", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000514" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000516", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000516", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000810" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000516", "pred" : "is_a", @@ -24105,6 +27637,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000516", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000515" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000517", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000517", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000810" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000517", "pred" : "is_a", @@ -24117,6 +27657,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000517", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000516" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000518", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000518", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000810" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000518", "pred" : "is_a", @@ -24129,6 +27677,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000518", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000517" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000519", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000519", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000810" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000519", "pred" : "is_a", @@ -24141,6 +27697,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000519", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000518" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000520", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000520", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000810" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000520", "pred" : "is_a", @@ -24153,6 +27717,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000520", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000519" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000521", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000521", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000810" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000521", "pred" : "is_a", @@ -24165,6 +27737,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000521", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000520" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000522", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000522", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000810" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000522", "pred" : "is_a", @@ -24177,6 +27757,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000522", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000521" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000523", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000523", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000810" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000523", "pred" : "is_a", @@ -24189,6 +27777,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000523", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000522" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000524", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000524", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000810" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000524", "pred" : "is_a", @@ -24201,6 +27797,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000524", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000523" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000525", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000525", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000810" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000525", "pred" : "is_a", @@ -24213,6 +27817,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000525", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000524" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000526", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000526", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000810" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000526", "pred" : "is_a", @@ -24225,6 +27837,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000526", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000525" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000527", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000527", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000810" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000527", "pred" : "is_a", @@ -24237,6 +27857,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000527", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000526" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000528", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000528", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000810" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000528", "pred" : "is_a", @@ -24249,6 +27877,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000528", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000527" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000529", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000529", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000810" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000529", "pred" : "is_a", @@ -24261,6 +27897,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000529", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000528" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000530", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000530", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000810" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000530", "pred" : "is_a", @@ -24273,6 +27917,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000530", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000529" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000531", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000531", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000810" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000531", "pred" : "is_a", @@ -24285,6 +27937,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000531", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000530" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000532", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000532", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000806" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000532", "pred" : "is_a", @@ -24297,6 +27957,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000532", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000531" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000533", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000533", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000806" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000533", "pred" : "is_a", @@ -24309,6 +27977,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000533", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000532" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000534", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000534", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000806" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000534", "pred" : "is_a", @@ -24321,6 +27997,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000534", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000533" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000535", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000535", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000806" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000535", "pred" : "is_a", @@ -24333,6 +28017,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000535", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000534" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000536", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000536", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000806" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000536", "pred" : "is_a", @@ -24345,6 +28037,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000536", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000535" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000537", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000537", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000806" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000537", "pred" : "is_a", @@ -24357,6 +28057,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000537", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000536" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000538", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000538", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000806" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000538", "pred" : "is_a", @@ -24369,6 +28077,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000538", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000537" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000539", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000539", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000806" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000539", "pred" : "is_a", @@ -24381,6 +28097,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000539", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000538" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000540", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000540", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000806" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000540", "pred" : "is_a", @@ -24393,6 +28117,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000540", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000539" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000541", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000541", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000806" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000541", "pred" : "is_a", @@ -24405,6 +28137,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000541", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000540" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000542", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000542", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000806" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000542", "pred" : "is_a", @@ -24417,6 +28157,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000542", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000541" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000543", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000543", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000806" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000543", "pred" : "is_a", @@ -24429,6 +28177,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000543", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000542" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000544", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000544", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000806" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000544", "pred" : "is_a", @@ -24441,6 +28197,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000544", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000543" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000545", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000545", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000806" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000545", "pred" : "is_a", @@ -24453,6 +28217,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000545", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000544" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000546", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000546", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000806" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000546", "pred" : "is_a", @@ -24465,6 +28237,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000546", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000545" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000547", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000547", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000806" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000547", "pred" : "is_a", @@ -24477,6 +28257,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000547", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000546" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000548", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000548", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000806" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000548", "pred" : "is_a", @@ -24489,6 +28277,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000548", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000547" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000549", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000549", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000806" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000549", "pred" : "is_a", @@ -24501,6 +28297,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000549", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000548" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000550", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000550", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000806" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000550", "pred" : "is_a", @@ -24513,6 +28317,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000550", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000549" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000551", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000551", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000806" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000551", "pred" : "is_a", @@ -24525,6 +28337,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000551", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000550" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000552", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000552", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000806" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000552", "pred" : "is_a", @@ -24537,6 +28357,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000552", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000551" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000553", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000553", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000806" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000553", "pred" : "is_a", @@ -24549,6 +28377,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000553", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000552" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000554", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000554", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000806" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000554", "pred" : "is_a", @@ -24561,6 +28397,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000554", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000553" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000555", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000555", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000806" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000555", "pred" : "is_a", @@ -24573,6 +28417,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000555", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000554" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000556", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000556", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000806" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000556", "pred" : "is_a", @@ -24585,6 +28437,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000556", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000555" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000557", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000557", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000806" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000557", "pred" : "is_a", @@ -24597,6 +28457,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000557", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000556" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000558", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000558", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000806" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000558", "pred" : "is_a", @@ -24609,6 +28477,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000558", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000557" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000559", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000559", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000806" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000559", "pred" : "is_a", @@ -24621,6 +28497,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000559", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000558" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000560", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000560", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000806" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000560", "pred" : "is_a", @@ -24633,6 +28517,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000560", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000559" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000561", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000561", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000806" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000561", "pred" : "is_a", @@ -24645,6 +28537,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000561", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000560" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000562", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000562", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000806" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000562", "pred" : "is_a", @@ -24657,6 +28557,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000562", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000561" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000563", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000563", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000806" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000563", "pred" : "is_a", @@ -24669,6 +28577,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000563", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000562" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000564", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000564", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000806" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000564", "pred" : "is_a", @@ -24681,6 +28597,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000564", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000563" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000565", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000565", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000806" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000565", "pred" : "is_a", @@ -24693,6 +28617,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000565", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000564" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000566", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000566", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000806" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000566", "pred" : "is_a", @@ -24705,6 +28637,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000566", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000565" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000567", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000567", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000806" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000567", "pred" : "is_a", @@ -24717,6 +28657,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000567", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000566" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000568", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000568", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000806" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000568", "pred" : "is_a", @@ -24729,6 +28677,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000568", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000567" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000569", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000569", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000806" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000569", "pred" : "is_a", @@ -24741,6 +28697,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000569", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000568" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000570", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000570", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000806" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000570", "pred" : "is_a", @@ -24753,6 +28717,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000570", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000569" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000571", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000571", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000806" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000571", "pred" : "is_a", @@ -24765,6 +28737,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000571", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000570" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000572", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000572", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000807" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000572", "pred" : "is_a", @@ -24777,6 +28757,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000572", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000571" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000573", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000573", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000807" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000573", "pred" : "is_a", @@ -24789,6 +28777,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000573", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000572" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000574", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000574", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000807" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000574", "pred" : "is_a", @@ -24801,6 +28797,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000574", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000573" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000575", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000575", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000807" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000575", "pred" : "is_a", @@ -24813,6 +28817,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000575", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000574" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000576", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000576", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000807" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000576", "pred" : "is_a", @@ -24825,6 +28837,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000576", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000575" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000577", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000577", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000807" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000577", "pred" : "is_a", @@ -24837,6 +28857,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000577", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000576" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000578", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000578", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000807" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000578", "pred" : "is_a", @@ -24849,6 +28877,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000578", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000577" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000579", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000579", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000807" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000579", "pred" : "is_a", @@ -24861,6 +28897,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000579", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000578" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000580", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000580", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000807" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000580", "pred" : "is_a", @@ -24873,6 +28917,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000580", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000579" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000581", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000581", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000807" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000581", "pred" : "is_a", @@ -24885,6 +28937,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000581", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000580" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000582", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000582", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000807" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000582", "pred" : "is_a", @@ -24897,6 +28957,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000582", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000581" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000583", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000583", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000807" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000583", "pred" : "is_a", @@ -24909,6 +28977,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000583", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000582" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000584", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000584", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000807" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000584", "pred" : "is_a", @@ -24921,6 +28997,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000584", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000583" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000585", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000585", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000807" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000585", "pred" : "is_a", @@ -24933,6 +29017,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000585", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000584" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000586", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000586", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000807" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000586", "pred" : "is_a", @@ -24945,6 +29037,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000586", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000585" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000587", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000587", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000807" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000587", "pred" : "is_a", @@ -24957,6 +29057,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000587", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000586" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000588", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000588", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000807" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000588", "pred" : "is_a", @@ -24969,6 +29077,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000588", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000587" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000589", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000589", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000807" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000589", "pred" : "is_a", @@ -24981,6 +29097,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000589", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000588" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000590", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000590", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000807" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000590", "pred" : "is_a", @@ -24993,6 +29117,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000590", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000589" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000591", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000591", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000807" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000591", "pred" : "is_a", @@ -25005,6 +29137,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000591", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000590" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000592", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000592", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000807" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000592", "pred" : "is_a", @@ -25017,6 +29157,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000592", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000591" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000593", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000593", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000807" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000593", "pred" : "is_a", @@ -25029,6 +29177,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000593", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000592" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000594", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000594", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000807" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000594", "pred" : "is_a", @@ -25041,6 +29197,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000594", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000593" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000595", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000595", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000807" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000595", "pred" : "is_a", @@ -25053,6 +29217,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000595", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000594" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000596", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000596", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000807" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000596", "pred" : "is_a", @@ -25065,6 +29237,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000596", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000595" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000597", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000597", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000807" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000597", "pred" : "is_a", @@ -25077,6 +29257,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000597", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000596" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000598", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000598", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000807" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000598", "pred" : "is_a", @@ -25089,6 +29277,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000598", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000597" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000599", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000599", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000807" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000599", "pred" : "is_a", @@ -25101,6 +29297,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000599", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000598" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000600", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000600", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000807" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000600", "pred" : "is_a", @@ -25113,6 +29317,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000600", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000599" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000601", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000601", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000807" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000601", "pred" : "is_a", @@ -25125,6 +29337,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000601", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000600" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000602", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000602", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000807" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000602", "pred" : "is_a", @@ -25137,6 +29357,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000602", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000601" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000603", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000603", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000807" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000603", "pred" : "is_a", @@ -25149,6 +29377,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000603", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000602" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000604", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000604", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000807" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000604", "pred" : "is_a", @@ -25161,6 +29397,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000604", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000603" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000605", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000605", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000807" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000605", "pred" : "is_a", @@ -25173,6 +29417,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000605", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000604" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000606", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000606", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000807" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000606", "pred" : "is_a", @@ -25185,6 +29437,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000606", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000605" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000607", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000607", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000807" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000607", "pred" : "is_a", @@ -25197,6 +29457,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000607", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000606" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000608", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000608", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000807" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000608", "pred" : "is_a", @@ -25209,6 +29477,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000608", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000607" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000609", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000609", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000807" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000609", "pred" : "is_a", @@ -25221,6 +29497,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000609", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000608" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000610", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000610", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000807" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000610", "pred" : "is_a", @@ -25230,9 +29514,17 @@ "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", "obj" : "http://purl.obolibrary.org/obo/WBls_0000019" }, { - "sub" : "http://purl.obolibrary.org/obo/WBls_0000610", - "pred" : "http://purl.obolibrary.org/obo/RO_0002087", - "obj" : "http://purl.obolibrary.org/obo/WBls_0000609" + "sub" : "http://purl.obolibrary.org/obo/WBls_0000610", + "pred" : "http://purl.obolibrary.org/obo/RO_0002087", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000609" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000611", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000611", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000807" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000611", "pred" : "is_a", @@ -25245,6 +29537,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000611", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000610" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000612", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000612", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000807" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000612", "pred" : "is_a", @@ -25257,6 +29557,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000612", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000611" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000613", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000613", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000807" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000613", "pred" : "is_a", @@ -25269,6 +29577,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000613", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000612" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000614", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000614", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000807" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000614", "pred" : "is_a", @@ -25281,6 +29597,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000614", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000613" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000615", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000615", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000807" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000615", "pred" : "is_a", @@ -25293,6 +29617,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000615", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000614" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000616", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000616", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000807" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000616", "pred" : "is_a", @@ -25305,6 +29637,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000616", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000615" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000617", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000617", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000807" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000617", "pred" : "is_a", @@ -25317,6 +29657,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000617", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000616" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000618", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000618", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000807" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000618", "pred" : "is_a", @@ -25329,6 +29677,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000618", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000617" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000619", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000619", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000807" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000619", "pred" : "is_a", @@ -25341,6 +29697,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000619", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000618" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000620", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000620", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000807" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000620", "pred" : "is_a", @@ -25353,6 +29717,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000620", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000619" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000621", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000621", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000807" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000621", "pred" : "is_a", @@ -25365,6 +29737,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000621", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000620" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000622", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000622", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000807" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000622", "pred" : "is_a", @@ -25377,6 +29757,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000622", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000621" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000623", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000623", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000807" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000623", "pred" : "is_a", @@ -25389,6 +29777,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000623", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000622" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000624", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000624", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000807" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000624", "pred" : "is_a", @@ -25401,6 +29797,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000624", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000623" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000625", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000625", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000807" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000625", "pred" : "is_a", @@ -25413,6 +29817,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000625", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000624" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000626", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000626", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000807" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000626", "pred" : "is_a", @@ -25425,6 +29837,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000626", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000625" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000627", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000627", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000807" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000627", "pred" : "is_a", @@ -25437,6 +29857,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000627", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000626" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000628", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000628", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000807" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000628", "pred" : "is_a", @@ -25449,6 +29877,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000628", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000627" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000629", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000629", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000807" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000629", "pred" : "is_a", @@ -25461,6 +29897,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000629", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000628" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000630", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000630", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000807" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000630", "pred" : "is_a", @@ -25473,6 +29917,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000630", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000629" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000631", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000631", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000807" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000631", "pred" : "is_a", @@ -25485,6 +29937,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000631", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000630" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000632", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000632", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000808" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000632", "pred" : "is_a", @@ -25497,6 +29957,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000632", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000631" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000633", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000633", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000808" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000633", "pred" : "is_a", @@ -25509,6 +29977,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000633", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000632" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000634", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000634", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000808" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000634", "pred" : "is_a", @@ -25521,6 +29997,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000634", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000633" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000635", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000635", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000808" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000635", "pred" : "is_a", @@ -25533,6 +30017,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000635", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000634" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000636", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000636", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000808" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000636", "pred" : "is_a", @@ -25545,6 +30037,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000636", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000635" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000637", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000637", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000808" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000637", "pred" : "is_a", @@ -25557,6 +30057,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000637", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000636" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000638", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000638", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000808" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000638", "pred" : "is_a", @@ -25569,6 +30077,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000638", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000637" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000639", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000639", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000808" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000639", "pred" : "is_a", @@ -25581,6 +30097,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000639", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000638" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000640", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000640", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000808" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000640", "pred" : "is_a", @@ -25593,6 +30117,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000640", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000639" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000641", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000641", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000808" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000641", "pred" : "is_a", @@ -25605,6 +30137,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000641", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000640" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000642", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000642", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000808" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000642", "pred" : "is_a", @@ -25617,6 +30157,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000642", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000641" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000643", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000643", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000808" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000643", "pred" : "is_a", @@ -25629,6 +30177,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000643", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000642" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000644", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000644", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000808" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000644", "pred" : "is_a", @@ -25641,6 +30197,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000644", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000643" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000645", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000645", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000808" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000645", "pred" : "is_a", @@ -25653,6 +30217,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000645", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000644" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000646", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000646", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000808" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000646", "pred" : "is_a", @@ -25665,6 +30237,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000646", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000645" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000647", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000647", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000808" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000647", "pred" : "is_a", @@ -25677,6 +30257,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000647", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000646" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000648", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000648", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000808" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000648", "pred" : "is_a", @@ -25689,6 +30277,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000648", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000647" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000649", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000649", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000808" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000649", "pred" : "is_a", @@ -25701,6 +30297,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000649", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000648" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000650", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000650", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000808" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000650", "pred" : "is_a", @@ -25713,6 +30317,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000650", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000649" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000651", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000651", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000808" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000651", "pred" : "is_a", @@ -25725,6 +30337,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000651", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000650" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000652", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000652", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000808" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000652", "pred" : "is_a", @@ -25737,6 +30357,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000652", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000651" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000653", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000653", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000808" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000653", "pred" : "is_a", @@ -25749,6 +30377,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000653", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000652" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000654", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000654", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000808" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000654", "pred" : "is_a", @@ -25761,6 +30397,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000654", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000653" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000655", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000655", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000808" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000655", "pred" : "is_a", @@ -25773,6 +30417,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000655", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000654" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000656", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000656", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000808" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000656", "pred" : "is_a", @@ -25785,6 +30437,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000656", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000655" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000657", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000657", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000808" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000657", "pred" : "is_a", @@ -25797,6 +30457,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000657", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000656" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000658", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000658", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000808" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000658", "pred" : "is_a", @@ -25809,6 +30477,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000658", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000657" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000659", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000659", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000808" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000659", "pred" : "is_a", @@ -25821,6 +30497,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000659", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000658" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000660", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000660", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000808" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000660", "pred" : "is_a", @@ -25833,6 +30517,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000660", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000659" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000661", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000661", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000808" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000661", "pred" : "is_a", @@ -25861,6 +30553,10 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000664", "pred" : "is_a", "obj" : "http://purl.obolibrary.org/obo/WBls_0000105" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000665", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000665", "pred" : "is_a", @@ -25869,6 +30565,10 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000665", "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", "obj" : "http://purl.obolibrary.org/obo/WBls_0000097" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000666", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000666", "pred" : "is_a", @@ -25896,7 +30596,11 @@ }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000670", "pred" : "is_a", - "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000670", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000816" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000670", "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", @@ -25908,7 +30612,11 @@ }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000671", "pred" : "is_a", - "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000671", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000816" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000671", "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", @@ -25920,7 +30628,11 @@ }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000672", "pred" : "is_a", - "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000672", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000816" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000672", "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", @@ -25932,7 +30644,11 @@ }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000673", "pred" : "is_a", - "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000673", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000816" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000673", "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", @@ -25944,7 +30660,11 @@ }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000674", "pred" : "is_a", - "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000674", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000816" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000674", "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", @@ -25956,7 +30676,11 @@ }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000675", "pred" : "is_a", - "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000675", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000816" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000675", "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", @@ -25968,7 +30692,11 @@ }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000676", "pred" : "is_a", - "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000676", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000816" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000676", "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", @@ -26028,7 +30756,11 @@ }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000683", "pred" : "is_a", - "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000683", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000821" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000683", "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", @@ -26040,7 +30772,11 @@ }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000684", "pred" : "is_a", - "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000684", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000821" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000684", "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", @@ -26052,7 +30788,11 @@ }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000685", "pred" : "is_a", - "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000685", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000821" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000685", "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", @@ -26064,7 +30804,11 @@ }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000686", "pred" : "is_a", - "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000686", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000821" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000686", "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", @@ -26076,7 +30820,11 @@ }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000687", "pred" : "is_a", - "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000687", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000821" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000687", "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", @@ -26088,7 +30836,11 @@ }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000688", "pred" : "is_a", - "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000688", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000821" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000688", "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", @@ -26100,7 +30852,11 @@ }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000689", "pred" : "is_a", - "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000689", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000821" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000689", "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", @@ -26112,7 +30868,11 @@ }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000690", "pred" : "is_a", - "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000690", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000821" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000690", "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", @@ -26124,7 +30884,11 @@ }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000691", "pred" : "is_a", - "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000691", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000821" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000691", "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", @@ -26136,7 +30900,11 @@ }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000692", "pred" : "is_a", - "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000692", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000821" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000692", "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", @@ -26145,6 +30913,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000692", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000691" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000693", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000693", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000808" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000693", "pred" : "is_a", @@ -26157,6 +30933,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000693", "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", "obj" : "http://purl.obolibrary.org/obo/WBls_0000661" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000694", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000694", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000808" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000694", "pred" : "is_a", @@ -26169,6 +30953,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000694", "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", "obj" : "http://purl.obolibrary.org/obo/WBls_0000693" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000695", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000695", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000811" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000695", "pred" : "is_a", @@ -26181,6 +30973,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000695", "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", "obj" : "http://purl.obolibrary.org/obo/WBls_0000694" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000696", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000696", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000811" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000696", "pred" : "is_a", @@ -26193,6 +30993,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000696", "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", "obj" : "http://purl.obolibrary.org/obo/WBls_0000695" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000697", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000697", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000811" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000697", "pred" : "is_a", @@ -26205,6 +31013,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000697", "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", "obj" : "http://purl.obolibrary.org/obo/WBls_0000696" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000698", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000698", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000811" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000698", "pred" : "is_a", @@ -26217,6 +31033,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000698", "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", "obj" : "http://purl.obolibrary.org/obo/WBls_0000697" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000699", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000699", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000811" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000699", "pred" : "is_a", @@ -26229,6 +31053,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000699", "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", "obj" : "http://purl.obolibrary.org/obo/WBls_0000698" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000700", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000700", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000811" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000700", "pred" : "is_a", @@ -26241,6 +31073,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000700", "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", "obj" : "http://purl.obolibrary.org/obo/WBls_0000699" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000701", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000701", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000818" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000701", "pred" : "is_a", @@ -26253,6 +31093,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000701", "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", "obj" : "http://purl.obolibrary.org/obo/WBls_0000700" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000702", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000702", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000818" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000702", "pred" : "is_a", @@ -26265,6 +31113,14 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000702", "pred" : "http://purl.obolibrary.org/obo/BFO_0000062", "obj" : "http://purl.obolibrary.org/obo/WBls_0000701" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000703", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000703", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000818" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000703", "pred" : "is_a", @@ -26297,6 +31153,10 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000708", "pred" : "is_a", "obj" : "http://purl.obolibrary.org/obo/WBls_0000711" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000709", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000709", "pred" : "is_a", @@ -26305,6 +31165,10 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000709", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000708" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000710", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000710", "pred" : "is_a", @@ -26385,6 +31249,10 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000726", "pred" : "is_a", "obj" : "http://purl.obolibrary.org/obo/WBls_0000741" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000727", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000727", "pred" : "is_a", @@ -26393,6 +31261,10 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000727", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000723" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000728", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000728", "pred" : "is_a", @@ -26405,6 +31277,10 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000729", "pred" : "is_a", "obj" : "http://purl.obolibrary.org/obo/WBls_0000682" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000730", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000730", "pred" : "is_a", @@ -26413,6 +31289,10 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000730", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000728" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000731", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000731", "pred" : "is_a", @@ -26421,6 +31301,10 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000731", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000730" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000732", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000732", "pred" : "is_a", @@ -26429,6 +31313,10 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000732", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000731" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000733", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000733", "pred" : "is_a", @@ -26457,6 +31345,10 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000736", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000735" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000737", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000737", "pred" : "is_a", @@ -26469,6 +31361,10 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000738", "pred" : "is_a", "obj" : "http://purl.obolibrary.org/obo/WBls_0000737" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000739", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000739", "pred" : "is_a", @@ -26477,6 +31373,10 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000739", "pred" : "http://purl.obolibrary.org/obo/RO_0002087", "obj" : "http://purl.obolibrary.org/obo/WBls_0000737" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000740", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000740", "pred" : "is_a", @@ -26524,7 +31424,11 @@ }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000797", "pred" : "is_a", - "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000797", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000816" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000797", "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", @@ -26536,7 +31440,11 @@ }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000798", "pred" : "is_a", - "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000798", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000816" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000798", "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", @@ -26548,7 +31456,11 @@ }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000799", "pred" : "is_a", - "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000799", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000816" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000799", "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", @@ -26560,7 +31472,11 @@ }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000800", "pred" : "is_a", - "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000800", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000816" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000800", "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", @@ -26572,7 +31488,11 @@ }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000801", "pred" : "is_a", - "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000801", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000818" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000801", "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", @@ -26584,7 +31504,11 @@ }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000802", "pred" : "is_a", - "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000802", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000818" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000802", "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", @@ -26684,11 +31608,19 @@ }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000827", "pred" : "is_a", - "obj" : "http://purl.obolibrary.org/obo/WBls_0000825" + "obj" : "http://purl.obolibrary.org/obo/BFO_0000003" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000827", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000804" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000827", "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", "obj" : "http://purl.obolibrary.org/obo/WBls_0000022" + }, { + "sub" : "http://purl.obolibrary.org/obo/WBls_0000828", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/WBls_0000817" }, { "sub" : "http://purl.obolibrary.org/obo/WBls_0000828", "pred" : "is_a", @@ -26705,10 +31637,6 @@ "sub" : "http://purl.obolibrary.org/obo/WBls_0000829", "pred" : "is_a", "obj" : "http://purl.obolibrary.org/obo/WBls_0000827" - }, { - "sub" : "http://purl.obolibrary.org/obo/RO_0002087", - "pred" : "subPropertyOf", - "obj" : "http://purl.obolibrary.org/obo/BFO_0000062" } ] } ] } \ No newline at end of file diff --git a/wbls-base.obo b/wbls-base.obo index 8944e07..3a65304 100644 --- a/wbls-base.obo +++ b/wbls-base.obo @@ -1,5 +1,5 @@ format-version: 1.2 -data-version: wbls/releases/2024-01-16/wbls-base.owl +data-version: wbls/releases/2024-04-09/wbls-base.owl date: 15:11:2017 12:24 saved-by: chris-grove auto-generated-by: OBO-Edit 2.2-rc1 @@ -12,7 +12,7 @@ property_value: http://purl.org/dc/elements/1.1/title "C. elegans Development On property_value: http://purl.org/dc/elements/1.1/type IAO:8000001 property_value: http://purl.org/dc/terms/license "http://creativecommons.org/licenses/by/4.0/" xsd:string property_value: IAO:0000700 WBls:0000075 -property_value: owl:versionInfo "2024-01-16" xsd:string +property_value: owl:versionInfo "2024-04-09" xsd:string [Term] id: WBls:0000001 @@ -35,7 +35,7 @@ name: embryo Ce def: "The whole period of embryogenesis in the nematode Caenorhabditis elegans, from the formation of an egg until hatching." [WB:WBPerson2987, WB:wjc] synonym: "embryo" BROAD [] is_a: WBls:0000102 ! nematode embryo -is_a: WBls:0000825 ! C. elegans life stage +is_a: WBls:0000803 ! C. elegans life stage occurring during embryogenesis [Term] id: WBls:0000004 @@ -43,16 +43,16 @@ name: proliferating embryo Ce def: "The C. elegans life stage spanning 0-350min after first cleavage at 20 Centigrade. Proliferate from 1 cell to 560 cells. From start of first cleavage until cleavage is over." [WB:wjc] synonym: "early embryo" EXACT [] synonym: "proliferating embryo" BROAD [] -is_a: WBls:0000825 ! C. elegans life stage -relationship: part_of WBls:0000003 ! embryo Ce +is_a: WBls:0000812 ! C. elegans life stage occurring during proliferating embryo +relationship: BFO:0000050 WBls:0000003 ! embryo Ce [Term] id: WBls:0000005 name: blastula embryo Ce def: "The C. elegans life stage spanning 0-100min after first cleavage at 20 Centigrade. Proliferate from 1 cell to 28 cells. From first cleavage until the start of gastrulation." [WB:wjc] synonym: "blastula embryo" BROAD [] -is_a: WBls:0000825 ! C. elegans life stage -relationship: part_of WBls:0000004 ! proliferating embryo Ce +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo +relationship: BFO:0000050 WBls:0000004 ! proliferating embryo Ce [Term] id: WBls:0000006 @@ -60,81 +60,96 @@ name: 1-cell embryo Ce def: "Also called zygote. -50min till 0min of first cleavage at 20 Centigrade. Contains 1 cell." [WB:wjc] synonym: "1-cell embryo" BROAD [] synonym: "fertilized egg" EXACT [WB:dr] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000823 ! C. elegans life stage by number of cells -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000669 ! unfertilized egg Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000669 ! unfertilized egg Ce [Term] id: WBls:0000007 name: 2-cell embryo Ce def: "The C. elegans life stage spanning 0-20min after first cleavage at 20 Centigrade. Contains 2 cells." [WB:wjc] synonym: "2-cell embryo" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000823 ! C. elegans life stage by number of cells -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000006 ! 1-cell embryo Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000006 ! 1-cell embryo Ce [Term] id: WBls:0000008 name: 4-cell embryo Ce def: "The C. elegans life stage spanning 20-40min after first cleavage at 20 Centigrade. Contains 4 cells." [WB:wjc] synonym: "4-cell embryo" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000823 ! C. elegans life stage by number of cells -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000007 ! 2-cell embryo Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000007 ! 2-cell embryo Ce [Term] id: WBls:0000009 name: 28-cell embryo Ce def: "The C. elegans life stage spanning 100-105 min after first cleaveage at 20 Centigrade. Contains 28 cells." [WB:wjc] synonym: "28-cell embryo" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000823 ! C. elegans life stage by number of cells -relationship: part_of WBls:0000010 ! gastrulating embryo Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce [Term] id: WBls:0000010 name: gastrulating embryo Ce def: "The C. elegans life stage spanning 100-290min after first cleavage at 20 Centigrade. Proliferate from 28 cells to 421 cells. Referring to the whole period of gastrulation." [WB:wjc] synonym: "gastrulating embryo" BROAD [] -is_a: WBls:0000825 ! C. elegans life stage -relationship: part_of WBls:0000004 ! proliferating embryo Ce -relationship: starts_at_end_of WBls:0000005 ! blastula embryo Ce +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation +relationship: BFO:0000050 WBls:0000004 ! proliferating embryo Ce +relationship: RO:0002087 WBls:0000005 ! blastula embryo Ce [Term] id: WBls:0000011 name: 51-cell embryo Ce def: "The C. elegans life stage spanning 120-135 min after first cleavage at 20 Centigrade. Contains 51 cells." [WB:wjc] synonym: "51-cell embryo" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000823 ! C. elegans life stage by number of cells -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: preceded_by WBls:0000086 ! 44-cell embryo Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: BFO:0000062 WBls:0000086 ! 44-cell embryo Ce [Term] id: WBls:0000012 name: 88-cell embryo Ce def: "The C. elegans life stage spanning 145-150 min after first cleavage at 20 Centigrade. Contains 88 cells." [WB:wjc] synonym: "88-cell embryo" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000823 ! C. elegans life stage by number of cells -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: preceded_by WBls:0000088 ! 86-cell embryo Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: BFO:0000062 WBls:0000088 ! 86-cell embryo Ce [Term] id: WBls:0000013 name: enclosing embryo Ce def: "The C. elegans life stage spanning 290-350min after first cleavage at 20 Centigrade. Proliferate from 421 cells to 560 cells. The stage when embryo just finished gastrulation and is enclosing." [WB:wjc] synonym: "enclosing embryo" BROAD [] -is_a: WBls:0000825 ! C. elegans life stage -relationship: part_of WBls:0000014 ! late cleavage stage embryo Ce -relationship: preceded_by WBls:0000014 ! late cleavage stage embryo Ce -relationship: starts_at_end_of WBls:0000010 ! gastrulating embryo Ce +is_a: BFO:0000003 +is_a: WBls:0000815 ! C. elegans life stage occurring during enclosing embryo +relationship: BFO:0000050 WBls:0000014 ! late cleavage stage embryo Ce +relationship: BFO:0000062 WBls:0000014 ! late cleavage stage embryo Ce +relationship: RO:0002087 WBls:0000010 ! gastrulating embryo Ce [Term] id: WBls:0000014 name: late cleavage stage embryo Ce def: "The C. elegans life stage spanning 210-350min after first cleavage at 20 Centigrade. Proliferate from 421 cells to 560 cells. The stage before the fast cleavage of cells finishes." [WB:wjc] synonym: "late cleavage stage embryo" BROAD [] -is_a: WBls:0000825 ! C. elegans life stage -relationship: part_of WBls:0000004 ! proliferating embryo Ce -relationship: preceded_by WBls:0000010 ! gastrulating embryo Ce +is_a: BFO:0000003 +is_a: WBls:0000812 ! C. elegans life stage occurring during proliferating embryo +relationship: BFO:0000050 WBls:0000004 ! proliferating embryo Ce +relationship: BFO:0000062 WBls:0000010 ! gastrulating embryo Ce [Term] id: WBls:0000015 @@ -142,56 +157,62 @@ name: elongating embryo Ce def: "The C. elegans life stage spanning 350-620min after first cleavage at 20 Centigrade. Cell number remains at ~560 cells, with some new cells generated and some cells go through programmed cell death. The stage that embryo starts elongation until elongation is over." [WB:wjc] synonym: "elongating embryo" BROAD [] synonym: "mid embryo" EXACT [] -is_a: WBls:0000825 ! C. elegans life stage -relationship: part_of WBls:0000003 ! embryo Ce -relationship: preceded_by WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000004 ! proliferating embryo Ce +is_a: BFO:0000003 +is_a: WBls:0000805 ! C. elegans life stage occurring during elongating embryo +relationship: BFO:0000050 WBls:0000003 ! embryo Ce +relationship: BFO:0000062 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000004 ! proliferating embryo Ce [Term] id: WBls:0000016 name: bean embryo Ce def: "The C. elegans life stage spanning 350-390min after first cleavage at 20 Centigrade. Cell number remains at ~560 cells, with some new cells generated and some cells go through programmed cell death. Emrbyo elongation started but have not formed comma shape yet. The shape of embryo looks like a lima bean. A stage right before comma embryo. Also called lima embryo or lima bean stage." [WB:wjc] synonym: "bean embryo" BROAD [] -is_a: WBls:0000825 ! C. elegans life stage -relationship: part_of WBls:0000015 ! elongating embryo Ce -relationship: starts_at_end_of WBls:0000013 ! enclosing embryo Ce -relationship: starts_at_end_of WBls:0000014 ! late cleavage stage embryo Ce +is_a: BFO:0000003 +is_a: WBls:0000809 ! C. elegans life stage occurring during bean embryo +relationship: BFO:0000050 WBls:0000015 ! elongating embryo Ce +relationship: RO:0002087 WBls:0000013 ! enclosing embryo Ce +relationship: RO:0002087 WBls:0000014 ! late cleavage stage embryo Ce [Term] id: WBls:0000017 name: comma embryo Ce def: "The C. elegans life stage spanning 390-420min after first cleavage at 20 Centigrade. Cell number remains at ~560 cells, with some new cells generated and some cells go through programmed cell death. The shape of embryo looks like a comma. A stage between bean embryo and 1.5-fold embryo." [WB:wjc] synonym: "comma embryo" BROAD [] -is_a: WBls:0000825 ! C. elegans life stage -relationship: part_of WBls:0000015 ! elongating embryo Ce -relationship: starts_at_end_of WBls:0000016 ! bean embryo Ce +is_a: BFO:0000003 +is_a: WBls:0000810 ! C. elegans life stage occurring during comma embryo +relationship: BFO:0000050 WBls:0000015 ! elongating embryo Ce +relationship: RO:0002087 WBls:0000016 ! bean embryo Ce [Term] id: WBls:0000018 name: 1.5-fold embryo Ce def: "The C. elegans life stage spanning 420-460min after first cleavage at 20 Centigrade. Cell number remains at ~560 cells, with some new cells generated and some cells go through programmed cell death. The shape of embryo is elongated and fold back 50%. A stage between comma embryo and 2-fold embryo." [WB:wjc] synonym: "1.5-fold embryo" BROAD [] -is_a: WBls:0000825 ! C. elegans life stage -relationship: part_of WBls:0000015 ! elongating embryo Ce -relationship: starts_at_end_of WBls:0000017 ! comma embryo Ce +is_a: BFO:0000003 +is_a: WBls:0000806 ! C. elegans life stage occurring during 1.5-fold embryo +relationship: BFO:0000050 WBls:0000015 ! elongating embryo Ce +relationship: RO:0002087 WBls:0000017 ! comma embryo Ce [Term] id: WBls:0000019 name: 2-fold embryo Ce def: "The C. elegans life stage spanning 460-520min after first cleavage at 20 Centigrade. Cell number remains at ~560 cells, with some new cells generated and some cells go through programmed cell death. The shape of embryo is elongated and double fold. A stage between 1.5-fold embryo and 3-fold embryo." [WB:wjc] synonym: "2-fold embryo" BROAD [] -is_a: WBls:0000825 ! C. elegans life stage -relationship: part_of WBls:0000015 ! elongating embryo Ce -relationship: starts_at_end_of WBls:0000018 ! 1.5-fold embryo Ce +is_a: BFO:0000003 +is_a: WBls:0000807 ! C. elegans life stage occurring during 2-fold embryo +relationship: BFO:0000050 WBls:0000015 ! elongating embryo Ce +relationship: RO:0002087 WBls:0000018 ! 1.5-fold embryo Ce [Term] id: WBls:0000020 name: 3-fold embryo Ce def: "The C. elegans life stage spanning 520-620min after first cleavage at 20 Centigrade. Cell number remains at ~560 cells, with some new cells generated and some cells go through programmed cell death. The shape of embryo is elongated and tripple fold. A stage between 2-fold embryo and fully-elongated embryo. Also called pretzel embryo or pretzel stage." [WB:wjc] synonym: "3-fold embryo" BROAD [] -is_a: WBls:0000825 ! C. elegans life stage -relationship: part_of WBls:0000015 ! elongating embryo Ce -relationship: starts_at_end_of WBls:0000019 ! 2-fold embryo Ce +is_a: BFO:0000003 +is_a: WBls:0000808 ! C. elegans life stage occurring during 3-fold embryo +relationship: BFO:0000050 WBls:0000015 ! elongating embryo Ce +relationship: RO:0002087 WBls:0000019 ! 2-fold embryo Ce [Term] id: WBls:0000021 @@ -201,55 +222,61 @@ synonym: "fully-elongated embryo" BROAD [] synonym: "late embryo" EXACT [] synonym: "morphogenetic stage" EXACT [] synonym: "pre-hatched embryo" EXACT [] -is_a: WBls:0000825 ! C. elegans life stage -relationship: part_of WBls:0000003 ! embryo Ce -relationship: starts_at_end_of WBls:0000015 ! elongating embryo Ce -relationship: starts_at_end_of WBls:0000020 ! 3-fold embryo Ce +is_a: BFO:0000003 +is_a: WBls:0000811 ! C. elegans life stage occurring during fully-elongated embryo +relationship: BFO:0000050 WBls:0000003 ! embryo Ce +relationship: RO:0002087 WBls:0000015 ! elongating embryo Ce +relationship: RO:0002087 WBls:0000020 ! 3-fold embryo Ce [Term] id: WBls:0000022 name: postembryonic Ce def: "A developemental life stage of the nematode Caenorhabditis elegans that occurs from egg hatching until death." [WB:WBPerson2987, WB:wjc] synonym: "postembryonic" BROAD [] -is_a: WBls:0000825 ! C. elegans life stage -relationship: starts_at_end_of WBls:0000003 ! embryo Ce +is_a: BFO:0000003 +is_a: WBls:0000804 ! C. elegans life stage occurring post embryogenesis +relationship: RO:0002087 WBls:0000003 ! embryo Ce [Term] id: WBls:0000023 name: larva Ce def: "A developmental life stage of the nematode Caenorhabditis elegans that occurs from egg hatching until adulthood." [WB:WBPerson2987, WB:wjc] synonym: "larva" BROAD [] +is_a: BFO:0000003 is_a: WBls:0000105 ! nematode larval stage -is_a: WBls:0000825 ! C. elegans life stage -relationship: part_of WBls:0000022 ! postembryonic Ce -relationship: starts_at_end_of WBls:0000003 ! embryo Ce +is_a: WBls:0000817 ! C. elegans life stage occurring during larval stage +relationship: BFO:0000050 WBls:0000022 ! postembryonic Ce +relationship: RO:0002087 WBls:0000003 ! embryo Ce [Term] id: WBls:0000024 name: L1 larva Ce def: "The first stage larva. At 25 Centigrade, it ranges 14-25.5 hours after fertilization, 0-11.5 hours after hatch." [WB:wjc] synonym: "L1 larva" BROAD [] +is_a: BFO:0000003 is_a: WBls:0000106 ! L1 larval stage -is_a: WBls:0000825 ! C. elegans life stage -relationship: part_of WBls:0000023 ! larva Ce -relationship: starts_at_end_of WBls:0000003 ! embryo Ce +is_a: WBls:0000818 ! C. elegans life stage occurring during L1 larval stage +relationship: BFO:0000050 WBls:0000023 ! larva Ce +relationship: RO:0002087 WBls:0000003 ! embryo Ce [Term] id: WBls:0000025 name: L1-L2 lethargus Ce def: "The stage during L1-L2 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old." [WB:wjc] synonym: "L1-L2 lethargus" BROAD [] +is_a: BFO:0000003 is_a: WBls:0000824 ! C. elegans life stage occurring during larval molt -relationship: part_of WBls:0000026 ! L1-L2 molt Ce +relationship: BFO:0000050 WBls:0000026 ! L1-L2 molt Ce [Term] id: WBls:0000026 name: L1-L2 molt Ce def: "The stage when an animal shifts from L1 larva to L2 larva. It includes the synthesis of new cuticle, cease of phrayngeal pumping during a lethargus stage, and the shed off of old cuticle." [WB:wjc] synonym: "L1-L2 molt" BROAD [] +is_a: BFO:0000003 is_a: WBls:0000824 ! C. elegans life stage occurring during larval molt -relationship: part_of WBls:0000023 ! larva Ce -relationship: starts_at_end_of WBls:0000024 ! L1 larva Ce +relationship: BFO:0000050 WBls:0000023 ! larva Ce +relationship: RO:0002087 WBls:0000024 ! L1 larva Ce [Term] id: WBls:0000027 @@ -257,68 +284,75 @@ name: L2 larva Ce def: "The second stage larva. At 25 Centigrade, it ranges 25.5-32.5 hours after fertilization, 11.5-18.5 hours after hatch." [WB:wjc] synonym: "L2 larva" BROAD [] is_a: WBls:0000107 ! L2 larval stage -is_a: WBls:0000825 ! C. elegans life stage -relationship: part_of WBls:0000023 ! larva Ce -relationship: preceded_by WBls:0000024 ! L1 larva Ce -relationship: starts_at_end_of WBls:0000026 ! L1-L2 molt Ce +is_a: WBls:0000819 ! C. elegans life stage occurring during L2 larval stage +relationship: BFO:0000050 WBls:0000023 ! larva Ce +relationship: BFO:0000062 WBls:0000024 ! L1 larva Ce +relationship: RO:0002087 WBls:0000026 ! L1-L2 molt Ce [Term] id: WBls:0000028 name: L2-L3 lethargus Ce def: "The stage during L2-L3 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old." [WB:wjc] synonym: "L2-L3 lethargus" BROAD [] +is_a: BFO:0000003 is_a: WBls:0000824 ! C. elegans life stage occurring during larval molt -relationship: part_of WBls:0000029 ! L2-L3 molt Ce +relationship: BFO:0000050 WBls:0000029 ! L2-L3 molt Ce [Term] id: WBls:0000029 name: L2-L3 molt Ce def: "The stage when an animal shifts from L2 larva to L3 larva. It includes the synthesis of new cuticle, cease of phrayngeal pumping during a lethargus stage, and the shed off of old cuticle." [WB:wjc] synonym: "L2-L3 molt" BROAD [] +is_a: BFO:0000003 is_a: WBls:0000824 ! C. elegans life stage occurring during larval molt -relationship: part_of WBls:0000023 ! larva Ce -relationship: starts_at_end_of WBls:0000027 ! L2 larva Ce +relationship: BFO:0000050 WBls:0000023 ! larva Ce +relationship: RO:0002087 WBls:0000027 ! L2 larva Ce [Term] id: WBls:0000030 name: L2d-dauer lethargus Ce def: "The stage during L2d-dauer molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old." [WB:wjc] synonym: "L2d-dauer lethargus" BROAD [] +is_a: BFO:0000003 is_a: WBls:0000824 ! C. elegans life stage occurring during larval molt -relationship: part_of WBls:0000031 ! L2d-dauer molt Ce +relationship: BFO:0000050 WBls:0000031 ! L2d-dauer molt Ce [Term] id: WBls:0000031 name: L2d-dauer molt Ce def: "The stage when an animal shifts from L2d larva to dauer larva. It includes the synthesis of new cuticle, cease of pharyngeal pumping during a lethargus stage, and the shed off of old cuticle." [WB:wjc] synonym: "L2d-dauer molt" BROAD [] +is_a: BFO:0000003 is_a: WBls:0000824 ! C. elegans life stage occurring during larval molt -relationship: part_of WBls:0000023 ! larva Ce +relationship: BFO:0000050 WBls:0000023 ! larva Ce [Term] id: WBls:0000032 name: dauer larva Ce def: "A third stage larva specialized for dispersal and long term survival." [ISBN:0-87969-433-5] synonym: "dauer larva" BROAD [] -is_a: WBls:0000825 ! C. elegans life stage -relationship: part_of WBls:0000023 ! larva Ce -relationship: preceded_by WBls:0000027 ! L2 larva Ce +is_a: BFO:0000003 +is_a: WBls:0000817 ! C. elegans life stage occurring during larval stage +relationship: BFO:0000050 WBls:0000023 ! larva Ce +relationship: BFO:0000062 WBls:0000027 ! L2 larva Ce [Term] id: WBls:0000033 name: postdauer-L4 lethargus Ce def: "The stage during postdauer-L4 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old." [WB:wjc] synonym: "postdauer-L4 lethargus" BROAD [] +is_a: BFO:0000003 is_a: WBls:0000824 ! C. elegans life stage occurring during larval molt -relationship: part_of WBls:0000034 ! postdauer-L4 molt Ce +relationship: BFO:0000050 WBls:0000034 ! postdauer-L4 molt Ce [Term] id: WBls:0000034 name: postdauer-L4 molt Ce def: "The stage when an animal shifts from post dauer stage to L4 larva. It includes the synthesis of new cuticle, cease of phrayngeal pumping during a lethargus stage, and the shed off of old cuticle." [WB:wjc] synonym: "postdauer-L4 molt" BROAD [] +is_a: BFO:0000003 is_a: WBls:0000824 ! C. elegans life stage occurring during larval molt -relationship: part_of WBls:0000052 ! post dauer L3 stage Ce +relationship: BFO:0000050 WBls:0000052 ! post dauer L3 stage Ce [Term] id: WBls:0000035 @@ -326,27 +360,29 @@ name: L3 larva Ce def: "The third stage larva. At 25 Centigrade, it ranges 32.5-40 hours after fertilization, 18.5-26 hours after hatch." [WB:wjc] synonym: "L3 larva" BROAD [] is_a: WBls:0000108 ! L3 larval stage -is_a: WBls:0000825 ! C. elegans life stage -relationship: part_of WBls:0000023 ! larva Ce -relationship: preceded_by WBls:0000027 ! L2 larva Ce -relationship: starts_at_end_of WBls:0000029 ! L2-L3 molt Ce +is_a: WBls:0000820 ! C. elegans life stage occurring during L3 larval stage +relationship: BFO:0000050 WBls:0000023 ! larva Ce +relationship: BFO:0000062 WBls:0000027 ! L2 larva Ce +relationship: RO:0002087 WBls:0000029 ! L2-L3 molt Ce [Term] id: WBls:0000036 name: L3-L4 lethargus Ce def: "The stage during L3-L4 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old." [WB:wjc] synonym: "L3-L4 lethargus" BROAD [] +is_a: BFO:0000003 is_a: WBls:0000824 ! C. elegans life stage occurring during larval molt -relationship: part_of WBls:0000037 ! L3-L4 molt Ce +relationship: BFO:0000050 WBls:0000037 ! L3-L4 molt Ce [Term] id: WBls:0000037 name: L3-L4 molt Ce def: "The stage when an animal shifts from L3 larva to L4 larva. It includes the synthesis of new cuticle, cease of phrayngeal pumping during a lethargus stage, and the shed off of old cuticle." [WB:wjc] synonym: "L3-L4 molt" BROAD [] +is_a: BFO:0000003 is_a: WBls:0000824 ! C. elegans life stage occurring during larval molt -relationship: part_of WBls:0000023 ! larva Ce -relationship: starts_at_end_of WBls:0000035 ! L3 larva Ce +relationship: BFO:0000050 WBls:0000023 ! larva Ce +relationship: RO:0002087 WBls:0000035 ! L3 larva Ce [Term] id: WBls:0000038 @@ -354,27 +390,29 @@ name: L4 larva Ce def: "The fourth stage larva. At 25 Centigrade, it ranges 40-49.5 hours after fertilization, 26-35.5 hours after hatch." [WB:wjc] synonym: "L4 larva" BROAD [] is_a: WBls:0000109 ! L4 larval stage -is_a: WBls:0000825 ! C. elegans life stage -relationship: part_of WBls:0000023 ! larva Ce -relationship: preceded_by WBls:0000035 ! L3 larva Ce -relationship: starts_at_end_of WBls:0000032 ! dauer larva Ce -relationship: starts_at_end_of WBls:0000037 ! L3-L4 molt Ce +is_a: WBls:0000821 ! C. elegans life stage occurring during L4 larval stage +relationship: BFO:0000050 WBls:0000023 ! larva Ce +relationship: BFO:0000062 WBls:0000035 ! L3 larva Ce +relationship: RO:0002087 WBls:0000032 ! dauer larva Ce +relationship: RO:0002087 WBls:0000037 ! L3-L4 molt Ce [Term] id: WBls:0000039 name: L4-adult lethargus Ce def: "The stage during L4-adult molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old." [WB:wjc] synonym: "L4-adult lethargus" BROAD [] +is_a: BFO:0000003 is_a: WBls:0000824 ! C. elegans life stage occurring during larval molt -relationship: part_of WBls:0000040 ! L4-adult molt Ce +relationship: BFO:0000050 WBls:0000040 ! L4-adult molt Ce [Term] id: WBls:0000040 name: L4-adult molt Ce def: "The stage when an animal shifts from L4 larva to adult. It includes the synthesis of new cuticle, cease of phrayngeal pumping during a lethargus stage, and the shed off of old cuticle." [WB:wjc] synonym: "L4-adult molt" BROAD [] +is_a: BFO:0000003 is_a: WBls:0000824 ! C. elegans life stage occurring during larval molt -relationship: part_of WBls:0000023 ! larva Ce +relationship: BFO:0000050 WBls:0000023 ! larva Ce [Term] id: WBls:0000041 @@ -382,94 +420,104 @@ name: adult Ce def: "The stage that begins when a C.elegans individual is fully-developed and has reached maturity." [WB:wjc] synonym: "adult" BROAD [] is_a: WBls:0000104 ! nematode adult -is_a: WBls:0000825 ! C. elegans life stage -relationship: part_of WBls:0000022 ! postembryonic Ce -relationship: preceded_by WBls:0000038 ! L4 larva Ce -relationship: starts_at_end_of WBls:0000023 ! larva Ce -relationship: starts_at_end_of WBls:0000040 ! L4-adult molt Ce +is_a: WBls:0000816 ! C. elegans life stage occurring during adulthood +relationship: BFO:0000050 WBls:0000022 ! postembryonic Ce +relationship: BFO:0000062 WBls:0000038 ! L4 larva Ce +relationship: RO:0002087 WBls:0000023 ! larva Ce +relationship: RO:0002087 WBls:0000040 ! L4-adult molt Ce [Term] id: WBls:0000042 name: L1-L2 ecdysis Ce def: "The stage during L1-L2 molt, after the brief lethargus period, when an animal sheds off old cuticle." [WB:wjc] synonym: "L1-L2 ecdysis" BROAD [] +is_a: BFO:0000003 is_a: WBls:0000824 ! C. elegans life stage occurring during larval molt -relationship: part_of WBls:0000026 ! L1-L2 molt Ce -relationship: starts_at_end_of WBls:0000025 ! L1-L2 lethargus Ce +relationship: BFO:0000050 WBls:0000026 ! L1-L2 molt Ce +relationship: RO:0002087 WBls:0000025 ! L1-L2 lethargus Ce [Term] id: WBls:0000043 name: L1-L2d molt Ce def: "The stage when an animal shifts from L1 larva to L2d larva. It includes the synthesis of new cuticle, cease of phrayngeal pumping during a lethargus stage, and the shed off of old cuticle." [WB:wjc] synonym: "L1-L2d molt" BROAD [] +is_a: BFO:0000003 is_a: WBls:0000824 ! C. elegans life stage occurring during larval molt -relationship: part_of WBls:0000023 ! larva Ce +relationship: BFO:0000050 WBls:0000023 ! larva Ce [Term] id: WBls:0000044 name: L1-L2d lethargus Ce def: "The stage during L1-L2d molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old." [WB:wjc] synonym: "L1-L2d lethargus" BROAD [] +is_a: BFO:0000003 is_a: WBls:0000824 ! C. elegans life stage occurring during larval molt -relationship: part_of WBls:0000043 ! L1-L2d molt Ce +relationship: BFO:0000050 WBls:0000043 ! L1-L2d molt Ce [Term] id: WBls:0000045 name: L1-L2d ecdysis Ce def: "The stage during L1-L2d molt, after the brief lethargus period, when an animal sheds off old cuticle." [WB:wjc] synonym: "L1-L2d ecdysis" BROAD [] +is_a: BFO:0000003 is_a: WBls:0000824 ! C. elegans life stage occurring during larval molt -relationship: part_of WBls:0000043 ! L1-L2d molt Ce +relationship: BFO:0000050 WBls:0000043 ! L1-L2d molt Ce [Term] id: WBls:0000046 name: L2d larva Ce def: "A special second stage larva with altered physiology and developmental potential that leads to formation of dauer larva. At 25 Centigrade, it ranges 25.5-32.5 hours after fertilization, 11.5-18.5 hours after hatch." [ISBN:0-87969-433-5] synonym: "L2d larva" BROAD [] -is_a: WBls:0000825 ! C. elegans life stage -relationship: part_of WBls:0000023 ! larva Ce +is_a: BFO:0000003 +is_a: WBls:0000817 ! C. elegans life stage occurring during larval stage +relationship: BFO:0000050 WBls:0000023 ! larva Ce [Term] id: WBls:0000047 name: L2-L3 ecdysis Ce def: "The stage during L2-L3 molt, after the brief lethargus period, when an animal sheds off old cuticle." [WB:wjc] synonym: "L2-L3 ecdysis" BROAD [] +is_a: BFO:0000003 is_a: WBls:0000824 ! C. elegans life stage occurring during larval molt -relationship: part_of WBls:0000029 ! L2-L3 molt Ce -relationship: starts_at_end_of WBls:0000028 ! L2-L3 lethargus Ce +relationship: BFO:0000050 WBls:0000029 ! L2-L3 molt Ce +relationship: RO:0002087 WBls:0000028 ! L2-L3 lethargus Ce [Term] id: WBls:0000048 name: L2d-dauer ecdysis Ce def: "The stage during L2d-dauer molt, after the brief lethargus period, when an animal sheds off old cuticle." [WB:wjc] synonym: "L2d-dauer ecdysis" BROAD [] +is_a: BFO:0000003 is_a: WBls:0000824 ! C. elegans life stage occurring during larval molt -relationship: part_of WBls:0000031 ! L2d-dauer molt Ce +relationship: BFO:0000050 WBls:0000031 ! L2d-dauer molt Ce [Term] id: WBls:0000049 name: L3-L4 ecdysis Ce def: "The stage during L3-L4 molt, after the brief lethargus period, when an animal sheds off old cuticle." [WB:wjc] synonym: "L3-L4 ecdysis" BROAD [] +is_a: BFO:0000003 is_a: WBls:0000824 ! C. elegans life stage occurring during larval molt -relationship: part_of WBls:0000037 ! L3-L4 molt Ce -relationship: starts_at_end_of WBls:0000036 ! L3-L4 lethargus Ce +relationship: BFO:0000050 WBls:0000037 ! L3-L4 molt Ce +relationship: RO:0002087 WBls:0000036 ! L3-L4 lethargus Ce [Term] id: WBls:0000050 name: L4-adult ecdysis Ce def: "The stage during L4-adult molt, after the brief lethargus period, when an animal shed off old cuticle." [WB:wjc] +is_a: BFO:0000003 is_a: WBls:0000824 ! C. elegans life stage occurring during larval molt -relationship: part_of WBls:0000040 ! L4-adult molt Ce -relationship: starts_at_end_of WBls:0000039 ! L4-adult lethargus Ce +relationship: BFO:0000050 WBls:0000040 ! L4-adult molt Ce +relationship: RO:0002087 WBls:0000039 ! L4-adult lethargus Ce [Term] id: WBls:0000051 name: postdauer-L4 ecdysis Ce def: "The stage during postdauer-L4 molt, after the brief lethargus period, when an animal sheds off old cuticle." [WB:wjc] synonym: "postdauer-L4 ecdysis" BROAD [] +is_a: BFO:0000003 is_a: WBls:0000824 ! C. elegans life stage occurring during larval molt -relationship: part_of WBls:0000034 ! postdauer-L4 molt Ce +relationship: BFO:0000050 WBls:0000034 ! postdauer-L4 molt Ce [Term] id: WBls:0000052 @@ -477,8 +525,9 @@ name: post dauer L3 stage Ce def: "The stage right after an animal recovered from dauer but has not started transformation to L4 larva yet." [PMID:27417559, WB:wjc] synonym: "dauer exit" EXACT [] synonym: "PDL3" EXACT [] +is_a: WBls:0000817 ! C. elegans life stage occurring during larval stage is_a: WBls:0000827 ! post dauer stage Ce -relationship: part_of WBls:0000023 ! larva Ce +relationship: BFO:0000050 WBls:0000023 ! larva Ce property_value: isDefinedBy "\"By ~10-12 hours after stimulation to recovery at 20 degrees Celsius, or ~7-8 hours at 25 degrees Celsius, they reach the PDL3 (post-dauer L3 stage), where cell division and development have resumed. Cell fates, including cell divisions and expression of cell fate markers, are equivalent between L3 and PDL3 stages (Liu and Ambros, 1991; Euling and Ambros, 1996; Braendle and Félix, 2008; Karp and Greenwald, 2013). However, no molt occurs between dauer and PDL3. Thus, dauer alae are still visible on the cuticle, although more difficult to see because they become stretched as the larva loses radial constriction and begins to grow (Cassada and Russell, 1975; Riddle et al.,1997).\"" xsd:string {xref="PMID:27417559"} [Term] @@ -486,24 +535,27 @@ id: WBls:0000053 name: L2d-L3 molt Ce def: "The stage when an animal shifts from L2d larva to L3 larva. It includes the synthesis of new cuticle, cease of phrayngeal pumping during a lethargus stage, and the shed off of old cuticle." [WB:wjc] synonym: "L2d-L3 molt" BROAD [] +is_a: BFO:0000003 is_a: WBls:0000824 ! C. elegans life stage occurring during larval molt -relationship: part_of WBls:0000046 ! L2d larva Ce +relationship: BFO:0000050 WBls:0000046 ! L2d larva Ce [Term] id: WBls:0000054 name: L2d-L3 lethargus Ce def: "The stage during L2d-L3 molt when an animal becomes lethargic, ceases pharyngeal pumping and synthesizes new cuticle under the old." [WB:wjc] synonym: "L2d-L3 lethargus" BROAD [] +is_a: BFO:0000003 is_a: WBls:0000824 ! C. elegans life stage occurring during larval molt -relationship: part_of WBls:0000053 ! L2d-L3 molt Ce +relationship: BFO:0000050 WBls:0000053 ! L2d-L3 molt Ce [Term] id: WBls:0000055 name: L2d-L3 ecdysis Ce def: "The stage during L2d-L3 molt, after the brief lethargus period, when an animal sheds off old cuticle." [WB:wjc] synonym: "L2d-L3 ecdysis" BROAD [] +is_a: BFO:0000003 is_a: WBls:0000824 ! C. elegans life stage occurring during larval molt -relationship: part_of WBls:0000053 ! L2d-L3 molt Ce +relationship: BFO:0000050 WBls:0000053 ! L2d-L3 molt Ce [Term] id: WBls:0000056 @@ -524,8 +576,9 @@ id: WBls:0000058 name: pre-reproductive stage adult hermaphrodite Ce def: "Very young adult hermaphrodites that do not have eggs in the uterus yet. At 20 Centigrade: 0 - 13 hours after L4-adult molt. 3 days after first cleaveage." [WB:wjc] synonym: "pre-reproductive stage adult hermaphrodite" BROAD [] -is_a: WBls:0000825 ! C. elegans life stage -relationship: part_of WBls:0000057 ! adult hermaphrodite Ce +is_a: BFO:0000003 +is_a: WBls:0000816 ! C. elegans life stage occurring during adulthood +relationship: BFO:0000050 WBls:0000057 ! adult hermaphrodite Ce [Term] id: WBls:0000059 @@ -540,112 +593,127 @@ id: WBls:0000060 name: reproductive stage adult hermaphrodite Ce def: "Adult hermaphrodites continuously laying fertilized eggs. Hermaphrodite in egg laying stages--usually up to 4/5 days after L4-adult molt at Centigrade. From the first fertilized egg is laid, till all sperms are used. At 20 Centigrade: 13 hours after L4-adult molt until about 5.4 days after the L4-adult molt. 3-8.4 days after first cleavage." [WB:wjc] synonym: "reproductive stage adult hermaphrodite" BROAD [] -is_a: WBls:0000825 ! C. elegans life stage -relationship: part_of WBls:0000057 ! adult hermaphrodite Ce +is_a: BFO:0000003 +is_a: WBls:0000816 ! C. elegans life stage occurring during adulthood +relationship: BFO:0000050 WBls:0000057 ! adult hermaphrodite Ce [Term] id: WBls:0000061 name: oocyte-laying stage adult hermaphrodite Ce def: "When egg-laying is still going on but intermittent and during which a significant number of oocytes are laid. Included in reproductive stage adult hermaphrodite." [WB:wjc] synonym: "oocyte-laying stage adult hermaphrodite" BROAD [] -is_a: WBls:0000825 ! C. elegans life stage -relationship: part_of WBls:0000057 ! adult hermaphrodite Ce +is_a: BFO:0000003 +is_a: WBls:0000816 ! C. elegans life stage occurring during adulthood +relationship: BFO:0000050 WBls:0000057 ! adult hermaphrodite Ce [Term] id: WBls:0000062 name: post-reproductive stage adult hermaphrodite Ce def: "Adult hermaphrodites that contain no more sperm, thus stop egg-laying, but still alive. At 20 Centigrade: 5.4 days after L4-adult molt until the death. 8.4 - 13.2 (average wild type life span) days after first cleavage." [WB:wjc] synonym: "post-reproductive stage adult hermaphrodite" BROAD [] -is_a: WBls:0000825 ! C. elegans life stage -relationship: part_of WBls:0000057 ! adult hermaphrodite Ce +is_a: BFO:0000003 +is_a: WBls:0000816 ! C. elegans life stage occurring during adulthood +relationship: BFO:0000050 WBls:0000057 ! adult hermaphrodite Ce [Term] id: WBls:0000063 name: newly molted young adult hermaphrodite Ce def: "At 20 Centigrade: 0-24 hours after L4-adult molt." [WB:wjc] synonym: "newly molted young adult hermaphrodite" BROAD [] -is_a: WBls:0000825 ! C. elegans life stage -relationship: part_of WBls:0000057 ! adult hermaphrodite Ce +is_a: BFO:0000003 +is_a: WBls:0000816 ! C. elegans life stage occurring during adulthood +relationship: BFO:0000050 WBls:0000057 ! adult hermaphrodite Ce [Term] id: WBls:0000064 name: 1-day post-L4 adult hermaphrodite Ce def: "At 20 Centigrade: 24-48 hours after L4-adult molt. 4-5 days after first cleavage." [WB:wjc] synonym: "1-day post-L4 adult hermaphrodite" BROAD [] -is_a: WBls:0000825 ! C. elegans life stage -relationship: part_of WBls:0000057 ! adult hermaphrodite Ce +is_a: BFO:0000003 +is_a: WBls:0000816 ! C. elegans life stage occurring during adulthood +relationship: BFO:0000050 WBls:0000057 ! adult hermaphrodite Ce [Term] id: WBls:0000065 name: 2-days post-L4 adult hermaphrodite Ce def: "At 20 Centigrade: 48-72 hours after L4-adult molt. 5-6 days after first cleavage." [WB:wjc] synonym: "2-days post-L4 adult hermaphrodite" BROAD [] -is_a: WBls:0000825 ! C. elegans life stage -relationship: part_of WBls:0000057 ! adult hermaphrodite Ce -relationship: starts_at_end_of WBls:0000064 ! 1-day post-L4 adult hermaphrodite Ce +is_a: BFO:0000003 +is_a: WBls:0000816 ! C. elegans life stage occurring during adulthood +relationship: BFO:0000050 WBls:0000057 ! adult hermaphrodite Ce +relationship: RO:0002087 WBls:0000064 ! 1-day post-L4 adult hermaphrodite Ce [Term] id: WBls:0000066 name: 3-days post-L4 adult hermaphrodite Ce def: "At 20 Centigrade: 72-96 hours after L4-adult molt. 6-7 days after first cleavage." [WB:wjc] synonym: "3-days post-L4 adult hermaphrodite" BROAD [] -is_a: WBls:0000825 ! C. elegans life stage -relationship: part_of WBls:0000057 ! adult hermaphrodite Ce -relationship: starts_at_end_of WBls:0000065 ! 2-days post-L4 adult hermaphrodite Ce +is_a: BFO:0000003 +is_a: WBls:0000816 ! C. elegans life stage occurring during adulthood +relationship: BFO:0000050 WBls:0000057 ! adult hermaphrodite Ce +relationship: RO:0002087 WBls:0000065 ! 2-days post-L4 adult hermaphrodite Ce [Term] id: WBls:0000067 name: 4-days post-L4 adult hermaphrodite Ce def: "At 20 Centigrade: 96-120 hours after L4-adult molt. 7-8 days after first cleavage." [WB:wjc] synonym: "4-days post-L4 adult hermaphrodite" BROAD [] -is_a: WBls:0000825 ! C. elegans life stage -relationship: part_of WBls:0000057 ! adult hermaphrodite Ce -relationship: starts_at_end_of WBls:0000066 ! 3-days post-L4 adult hermaphrodite Ce +is_a: BFO:0000003 +is_a: WBls:0000816 ! C. elegans life stage occurring during adulthood +relationship: BFO:0000050 WBls:0000057 ! adult hermaphrodite Ce +relationship: RO:0002087 WBls:0000066 ! 3-days post-L4 adult hermaphrodite Ce [Term] id: WBls:0000068 name: 5-days post-L4 adult hermaphrodite Ce def: "At 20 Centigrade: 5-6 days after L4-adult molt. 8-9 days after first cleavage." [WB:wjc] synonym: "5-days post-L4 adult hermaphrodite" BROAD [] -is_a: WBls:0000825 ! C. elegans life stage -relationship: part_of WBls:0000057 ! adult hermaphrodite Ce -relationship: starts_at_end_of WBls:0000067 ! 4-days post-L4 adult hermaphrodite Ce +is_a: BFO:0000003 +is_a: WBls:0000816 ! C. elegans life stage occurring during adulthood +relationship: BFO:0000050 WBls:0000057 ! adult hermaphrodite Ce +relationship: RO:0002087 WBls:0000067 ! 4-days post-L4 adult hermaphrodite Ce [Term] id: WBls:0000069 name: 4-7 days post-L4 adult hermaphrodite Ce def: "At 20 Centigrade: 4-7 days after L4-adult molt. 7-10 days after first cleavage." [WB:wjc] synonym: "4-7 days post-L4 adult hermaphrodite" BROAD [] -is_a: WBls:0000825 ! C. elegans life stage -relationship: part_of WBls:0000057 ! adult hermaphrodite Ce -relationship: starts_at_end_of WBls:0000068 ! 5-days post-L4 adult hermaphrodite Ce +is_a: BFO:0000003 +is_a: WBls:0000816 ! C. elegans life stage occurring during adulthood +relationship: BFO:0000050 WBls:0000057 ! adult hermaphrodite Ce +relationship: RO:0002087 WBls:0000068 ! 5-days post-L4 adult hermaphrodite Ce [Term] id: WBls:0000070 name: 7-10 days post-L4 adult hermaphrodite Ce def: "At 20 Centigrade: 7-10 days after L4-adult molt. 10-13 days after first cleavage." [WB:wjc] synonym: "7-10 days post-L4 adult hermaphrodite" BROAD [] -is_a: WBls:0000825 ! C. elegans life stage -relationship: part_of WBls:0000057 ! adult hermaphrodite Ce -relationship: starts_at_end_of WBls:0000069 ! 4-7 days post-L4 adult hermaphrodite Ce +is_a: BFO:0000003 +is_a: WBls:0000816 ! C. elegans life stage occurring during adulthood +relationship: BFO:0000050 WBls:0000057 ! adult hermaphrodite Ce +relationship: RO:0002087 WBls:0000069 ! 4-7 days post-L4 adult hermaphrodite Ce [Term] id: WBls:0000071 name: 8-cell embryo Ce def: "The C. elegans life stage spanning ~50 min after first cleavage at 20 Centigrade. Contains 8 cells." [WB:wjc] synonym: "8-cell embryo" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000823 ! C. elegans life stage by number of cells -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000008 ! 4-cell embryo Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000008 ! 4-cell embryo Ce [Term] id: WBls:0000072 name: 12-cell embryo Ce def: "The C. elegans life stage spanning ~55 min after first cleavage at 20 Centigrade. Contains 12 cells." [WB:wjc] synonym: "12-cell embryo" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000823 ! C. elegans life stage by number of cells -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: preceded_by WBls:0000071 ! 8-cell embryo Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: BFO:0000062 WBls:0000071 ! 8-cell embryo Ce [Term] id: WBls:0000073 @@ -658,10 +726,11 @@ is_a: WBls:0000038 ! L4 larva Ce id: WBls:0000074 name: 11-15 days post-L4 adult hermaphrodite Ce def: "At 20 Centigrade: 11-15 days after L4-adult molt. 14-18 days after first cleavage." [WB:dr] -is_a: WBls:0000825 ! C. elegans life stage -relationship: part_of WBls:0000057 ! adult hermaphrodite Ce -relationship: preceded_by WBls:0000674 ! 10-days post-L4 adult hermaphrodite Ce -relationship: starts_at_end_of WBls:0000070 ! 7-10 days post-L4 adult hermaphrodite Ce +is_a: BFO:0000003 +is_a: WBls:0000816 ! C. elegans life stage occurring during adulthood +relationship: BFO:0000050 WBls:0000057 ! adult hermaphrodite Ce +relationship: BFO:0000062 WBls:0000674 ! 10-days post-L4 adult hermaphrodite Ce +relationship: RO:0002087 WBls:0000070 ! 7-10 days post-L4 adult hermaphrodite Ce created_by: danielaraciti creation_date: 2012-05-22T14:35:04Z @@ -700,9 +769,10 @@ name: Brugia L1 def: "The first stage larva." [WB:dr, WB:mb] synonym: "L1" BROAD [] synonym: "L1 larva Bma" EXACT [] +is_a: BFO:0000003 is_a: WBls:0000106 ! L1 larval stage -relationship: part_of WBls:0000097 ! Brugia larval stage -relationship: starts_at_end_of WBls:0000663 ! Brugia unsheathed microfilaria +relationship: BFO:0000050 WBls:0000097 ! Brugia larval stage +relationship: RO:0002087 WBls:0000663 ! Brugia unsheathed microfilaria created_by: danielaraciti creation_date: 2012-05-30T09:29:36Z @@ -713,8 +783,8 @@ def: "The second stage larva. Derived from flight muscles of vector host; some d synonym: "L2" BROAD [] synonym: "L2 larva Bma" EXACT [] is_a: WBls:0000107 ! L2 larval stage -relationship: part_of WBls:0000097 ! Brugia larval stage -relationship: starts_at_end_of WBls:0000079 ! Brugia L1 +relationship: BFO:0000050 WBls:0000097 ! Brugia larval stage +relationship: RO:0002087 WBls:0000079 ! Brugia L1 created_by: danielaraciti creation_date: 2012-05-30T09:30:40Z @@ -725,8 +795,8 @@ def: "The third stage larva." [WB:dr, WB:mb] synonym: "L3" BROAD [] synonym: "L3 larva Bma" EXACT [] is_a: WBls:0000108 ! L3 larval stage -relationship: part_of WBls:0000097 ! Brugia larval stage -relationship: starts_at_end_of WBls:0000080 ! Brugia L2 +relationship: BFO:0000050 WBls:0000097 ! Brugia larval stage +relationship: RO:0002087 WBls:0000080 ! Brugia L2 created_by: danielaraciti creation_date: 2012-05-30T09:31:06Z @@ -737,8 +807,8 @@ def: "The fourth stage larva. Should be conditioned by days post infection; as m synonym: "L4" BROAD [] synonym: "L4 larva Bma" EXACT [] is_a: WBls:0000109 ! L4 larval stage -relationship: part_of WBls:0000097 ! Brugia larval stage -relationship: starts_at_end_of WBls:0000081 ! Brugia L3 +relationship: BFO:0000050 WBls:0000097 ! Brugia larval stage +relationship: RO:0002087 WBls:0000081 ! Brugia L3 created_by: danielaraciti creation_date: 2012-05-30T09:31:38Z @@ -749,8 +819,8 @@ def: "The life-stage that begins when a B. malayi individual is fully-developed synonym: "adult" BROAD [] synonym: "adult Bma" EXACT [] is_a: WBls:0000104 ! nematode adult -relationship: part_of WBls:0000093 ! Brugia postembryonic stage -relationship: starts_at_end_of WBls:0000100 ! Brugia young adult +relationship: BFO:0000050 WBls:0000093 ! Brugia postembryonic stage +relationship: RO:0002087 WBls:0000100 ! Brugia young adult created_by: danielaraciti creation_date: 2012-05-30T09:32:18Z @@ -760,9 +830,11 @@ name: 14-cell embryo Ce def: "E-cell has divided into Ea and Ep. Contains 14 cells." [WB:dr, WB:WBPaper00046121] comment: Levin M, Hashimshony T, Wagner F, Yanai I. Developmental milestones punctuate gene expression in the Caenorhabditis embryo. Dev Cell. 2012 May 15;22(5):1101-8. Epub 2012 May 3. PubMed PMID: 22560298. Supplementary table 1. synonym: "14-cell embryo" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000823 ! C. elegans life stage by number of cells -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: preceded_by WBls:0000072 ! 12-cell embryo Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: BFO:0000062 WBls:0000072 ! 12-cell embryo Ce created_by: danielaraciti creation_date: 2012-10-02T17:15:41Z @@ -772,9 +844,11 @@ name: 24-cell embryo Ce def: "Fourth cleavage of the AB lineage. Contains 24 cells." [WB:dr, WB:WBPaper00046121] comment: Levin M, Hashimshony T, Wagner F, Yanai I. Developmental milestones punctuate gene expression in the Caenorhabditis embryo. Dev Cell. 2012 May 15;22(5):1101-8. Epub 2012 May 3. PubMed PMID: 22560298. Supplementary table 1. synonym: "24-cell embryo" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000823 ! C. elegans life stage by number of cells -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: preceded_by WBls:0000084 ! 14-cell embryo Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: BFO:0000062 WBls:0000084 ! 14-cell embryo Ce created_by: danielaraciti creation_date: 2012-10-02T17:23:32Z @@ -784,9 +858,11 @@ name: 44-cell embryo Ce def: "Fifth cleavage of the AB lineage. Contains 44 cells." [WB:dr, WB:WBPaper00046121] comment: Levin M, Hashimshony T, Wagner F, Yanai I. Developmental milestones punctuate gene expression in the Caenorhabditis embryo. Dev Cell. 2012 May 15;22(5):1101-8. Epub 2012 May 3. PubMed PMID: 22560298. Supplementary table 1. synonym: "44-cell embryo" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000823 ! C. elegans life stage by number of cells -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: preceded_by WBls:0000009 ! 28-cell embryo Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: BFO:0000062 WBls:0000009 ! 28-cell embryo Ce created_by: danielaraciti creation_date: 2012-10-02T17:25:18Z @@ -796,9 +872,11 @@ name: 68-cell embryo Ce def: "Sixth cleavage of the AB lineage. Contains 68 cells." [WB:dr, WB:WBPaper00046121] comment: Levin M, Hashimshony T, Wagner F, Yanai I. Developmental milestones punctuate gene expression in the Caenorhabditis embryo. Dev Cell. 2012 May 15;22(5):1101-8. Epub 2012 May 3. PubMed PMID: 22560298. Supplementary table 1. synonym: "68-cell embryo" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000823 ! C. elegans life stage by number of cells -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: preceded_by WBls:0000011 ! 51-cell embryo Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: BFO:0000062 WBls:0000011 ! 51-cell embryo Ce created_by: danielaraciti creation_date: 2012-10-02T17:26:52Z @@ -808,9 +886,11 @@ name: 86-cell embryo Ce def: "Seventh cleavage of the AB lineage. Contains 86 cells." [WB:dr, WB:WBPaper00046121] comment: Levin M, Hashimshony T, Wagner F, Yanai I. Developmental milestones punctuate gene expression in the Caenorhabditis embryo. Dev Cell. 2012 May 15;22(5):1101-8. Epub 2012 May 3. PubMed PMID: 22560298. Supplementary table 1. synonym: "86-cell embryo" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000823 ! C. elegans life stage by number of cells -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: preceded_by WBls:0000087 ! 68-cell embryo Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: BFO:0000062 WBls:0000087 ! 68-cell embryo Ce created_by: danielaraciti creation_date: 2012-10-02T17:27:50Z @@ -819,9 +899,11 @@ id: WBls:0000089 name: 190-cells embryo Ce def: "P4 and M cells have finished migrating. Contains 190 cells." [WB:dr] synonym: "190-cells embryo" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000823 ! C. elegans life stage by number of cells -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: preceded_by WBls:0000090 ! 96-cell embryo Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: BFO:0000062 WBls:0000090 ! 96-cell embryo Ce created_by: danielaraciti creation_date: 2012-10-15T13:19:10Z @@ -830,9 +912,11 @@ id: WBls:0000090 name: 96-cell embryo Ce def: "The C. elegans life stage spanning 155-165 min after first cleavage at 20 Centigrade. Contains 96 cells." [WB:dr] synonym: "96-cell embryo" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000823 ! C. elegans life stage by number of cells -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: preceded_by WBls:0000012 ! 88-cell embryo Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: BFO:0000062 WBls:0000012 ! 88-cell embryo Ce created_by: danielaraciti creation_date: 2012-10-16T15:37:30Z @@ -862,8 +946,9 @@ name: Brugia postembryonic stage def: "A developemental life stage in a roundworm of the genus Brugia that occurs from egg hatching until death." [WB:dr, WB:WBPerson2987] synonym: "postembryonic Bma" EXACT [] synonym: "postembryonic stage" BROAD [] +is_a: BFO:0000003 is_a: WBls:0000091 ! Brugia life stage -relationship: starts_at_end_of WBls:0000092 ! Brugia embryo +relationship: RO:0002087 WBls:0000092 ! Brugia embryo created_by: danielaraciti creation_date: 2013-11-12T04:50:29Z @@ -874,7 +959,7 @@ def: "Proliferates from 1 to 100 cells. As the Brugia female reproductive tract synonym: "early embryo" BROAD [] synonym: "early embryo Bma" EXACT [] is_a: WBls:0000091 ! Brugia life stage -relationship: part_of WBls:0000092 ! Brugia embryo +relationship: BFO:0000050 WBls:0000092 ! Brugia embryo created_by: danielaraciti creation_date: 2013-11-12T04:55:53Z @@ -884,9 +969,10 @@ name: Brugia middle embryo def: "Proliferates from 100 cells to Lima bean stage." [WB:dr, WB:mb] synonym: "middle embryo" BROAD [] synonym: "middle embryo Bma" EXACT [] +is_a: BFO:0000003 is_a: WBls:0000091 ! Brugia life stage -relationship: part_of WBls:0000092 ! Brugia embryo -relationship: starts_at_end_of WBls:0000094 ! Brugia early embryo +relationship: BFO:0000050 WBls:0000092 ! Brugia embryo +relationship: RO:0002087 WBls:0000094 ! Brugia early embryo created_by: danielaraciti creation_date: 2013-11-12T04:59:19Z @@ -896,9 +982,10 @@ name: Brugia late embryo def: "From Lima bean to hatching." [WB:dr, WB:mb] synonym: "late embryo" BROAD [] synonym: "late embryo Bma" EXACT [] +is_a: BFO:0000003 is_a: WBls:0000091 ! Brugia life stage -relationship: part_of WBls:0000092 ! Brugia embryo -relationship: starts_at_end_of WBls:0000095 ! Brugia middle embryo +relationship: BFO:0000050 WBls:0000092 ! Brugia embryo +relationship: RO:0002087 WBls:0000095 ! Brugia middle embryo created_by: danielaraciti creation_date: 2013-11-12T05:00:28Z @@ -908,9 +995,10 @@ name: Brugia larval stage def: "A developmental life stage of a roundworm of the genus Brugia that occurs from egg hatching until adulthood." [WB:dr, WB:WBPerson2987] synonym: "larva Bma" EXACT [] synonym: "larval stage" BROAD [] +is_a: BFO:0000003 is_a: WBls:0000105 ! nematode larval stage -relationship: part_of WBls:0000093 ! Brugia postembryonic stage -relationship: starts_at_end_of WBls:0000092 ! Brugia embryo +relationship: BFO:0000050 WBls:0000093 ! Brugia postembryonic stage +relationship: RO:0002087 WBls:0000092 ! Brugia embryo created_by: danielaraciti creation_date: 2013-11-12T05:12:19Z @@ -935,8 +1023,9 @@ def: "Derived from the host after reintroduction by vector feeding or manual ino synonym: "piL3" RELATED [] synonym: "post-infection L3" BROAD [] synonym: "post-infection L3 Bma" EXACT [] +is_a: BFO:0000003 is_a: WBls:0000091 ! Brugia life stage -relationship: part_of WBls:0000081 ! Brugia L3 +relationship: BFO:0000050 WBls:0000081 ! Brugia L3 created_by: danielaraciti creation_date: 2013-11-12T05:24:59Z @@ -946,9 +1035,10 @@ name: Brugia young adult def: "The animals have a significant \"prepatent\" period in the host, where they have moulted to adults but not yet started producing eggs or sperm; this stage is usually-should be conditioned by days post infection, with day 26 to approximately day 60 being the \"young adult\" in most systems - but note that the speed of development is different in different host genotypes." [WB:dr, WB:mb] synonym: "young adult" BROAD [] synonym: "young adult Bma" EXACT [] +is_a: BFO:0000003 is_a: WBls:0000091 ! Brugia life stage -relationship: part_of WBls:0000093 ! Brugia postembryonic stage -relationship: starts_at_end_of WBls:0000082 ! Brugia L4 +relationship: BFO:0000050 WBls:0000093 ! Brugia postembryonic stage +relationship: RO:0002087 WBls:0000082 ! Brugia L4 created_by: danielaraciti creation_date: 2013-11-12T05:37:52Z @@ -976,8 +1066,9 @@ creation_date: 2013-11-25T06:14:14Z id: WBls:0000103 name: postembryonic nematode def: "A developemental life stage in a nematode that occurs from egg hatching until death." [WB:dr, WB:WBPerson2987] +is_a: BFO:0000003 is_a: WBls:0000101 ! Nematode life stage -relationship: starts_at_end_of WBls:0000102 ! nematode embryo +relationship: RO:0002087 WBls:0000102 ! nematode embryo created_by: danielaraciti creation_date: 2013-11-25T06:14:39Z @@ -987,8 +1078,9 @@ name: nematode adult def: "The nematode life-stage that begins when the organism is fully-developed and has reached maturity." [WB:dr] synonym: "adult nematode" EXACT [] synonym: "L5" EXACT [] +is_a: BFO:0000003 is_a: WBls:0000101 ! Nematode life stage -relationship: starts_at_end_of WBls:0000105 ! nematode larval stage +relationship: RO:0002087 WBls:0000105 ! nematode larval stage created_by: danielaraciti creation_date: 2013-11-25T06:18:53Z @@ -1017,8 +1109,9 @@ id: WBls:0000107 name: L2 larval stage def: "The second stage larva of nematodes." [WB:dr] synonym: "L2 larva nematode" EXACT [] +is_a: BFO:0000003 is_a: WBls:0000105 ! nematode larval stage -relationship: starts_at_end_of WBls:0000106 ! L1 larval stage +relationship: RO:0002087 WBls:0000106 ! L1 larval stage created_by: danielaraciti creation_date: 2013-11-25T06:20:54Z @@ -1027,8 +1120,9 @@ id: WBls:0000108 name: L3 larval stage def: "The third stage larva of nematodes." [WB:dr] synonym: "L3 larva nematode" EXACT [] +is_a: BFO:0000003 is_a: WBls:0000105 ! nematode larval stage -relationship: starts_at_end_of WBls:0000107 ! L2 larval stage +relationship: RO:0002087 WBls:0000107 ! L2 larval stage created_by: danielaraciti creation_date: 2013-11-25T06:21:33Z @@ -1037,8 +1131,9 @@ id: WBls:0000109 name: L4 larval stage def: "The fourth stage larva of nematodes." [WB:dr] synonym: "L4 larva nematode" EXACT [] +is_a: BFO:0000003 is_a: WBls:0000105 ! nematode larval stage -relationship: starts_at_end_of WBls:0000108 ! L3 larval stage +relationship: RO:0002087 WBls:0000108 ! L3 larval stage created_by: danielaraciti creation_date: 2013-11-25T06:22:48Z @@ -1057,10 +1152,11 @@ id: WBls:0000111 name: 16-18 days post-L4 adult hermaphrodite Ce def: "At 20 Centigrade: 16-18 days after L4-adult molt. 18-21 days after first cleavage." [WB:dr] synonym: "16-18 days post-L4 adult hermaphrodite" BROAD [] -is_a: WBls:0000825 ! C. elegans life stage -relationship: part_of WBls:0000057 ! adult hermaphrodite Ce -relationship: preceded_by WBls:0000675 ! 15-days post-L4 adult hermaphrodite Ce -relationship: starts_at_end_of WBls:0000074 ! 11-15 days post-L4 adult hermaphrodite Ce +is_a: BFO:0000003 +is_a: WBls:0000816 ! C. elegans life stage occurring during adulthood +relationship: BFO:0000050 WBls:0000057 ! adult hermaphrodite Ce +relationship: BFO:0000062 WBls:0000675 ! 15-days post-L4 adult hermaphrodite Ce +relationship: RO:0002087 WBls:0000074 ! 11-15 days post-L4 adult hermaphrodite Ce created_by: danielaraciti [Term] @@ -1068,8 +1164,9 @@ id: WBls:0000112 name: 1 min post first-cleavage Ce def: "The time period encompassing the 1st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "1 min post first-cleavage" BROAD [] +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1078,9 +1175,11 @@ id: WBls:0000113 name: 2 min post first-cleavage Ce def: "The time period encompassing the 2nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "2 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000112 ! 1 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000112 ! 1 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1089,9 +1188,11 @@ id: WBls:0000114 name: 3 min post first-cleavage Ce def: "The time period encompassing the 3rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "3 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000113 ! 2 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000113 ! 2 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1100,9 +1201,11 @@ id: WBls:0000115 name: 4 min post first-cleavage Ce def: "The time period encompassing the 4th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "4 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000114 ! 3 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000114 ! 3 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1111,9 +1214,11 @@ id: WBls:0000116 name: 5 min post first-cleavage Ce def: "The time period encompassing the 5th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "5 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000115 ! 4 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000115 ! 4 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1122,9 +1227,11 @@ id: WBls:0000117 name: 6 min post first-cleavage Ce def: "The time period encompassing the 6th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "6 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000116 ! 5 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000116 ! 5 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1133,9 +1240,11 @@ id: WBls:0000118 name: 7 min post first-cleavage Ce def: "The time period encompassing the 7th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "7 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000117 ! 6 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000117 ! 6 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1144,9 +1253,11 @@ id: WBls:0000119 name: 8 min post first-cleavage Ce def: "The time period encompassing the 8th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "8 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000118 ! 7 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000118 ! 7 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1155,9 +1266,11 @@ id: WBls:0000120 name: 9 min post first-cleavage Ce def: "The time period encompassing the 9th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "9 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000119 ! 8 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000119 ! 8 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1166,9 +1279,11 @@ id: WBls:0000121 name: 10 min post first-cleavage Ce def: "The time period encompassing the 10th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "10 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000120 ! 9 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000120 ! 9 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1177,9 +1292,11 @@ id: WBls:0000122 name: 11 min post first-cleavage Ce def: "The time period encompassing the 11st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "11 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000121 ! 10 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000121 ! 10 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1188,9 +1305,11 @@ id: WBls:0000123 name: 12 min post first-cleavage Ce def: "The time period encompassing the 12nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "12 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000122 ! 11 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000122 ! 11 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1199,9 +1318,11 @@ id: WBls:0000124 name: 13 min post first-cleavage Ce def: "The time period encompassing the 13rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "13 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000123 ! 12 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000123 ! 12 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1210,9 +1331,11 @@ id: WBls:0000125 name: 14 min post first-cleavage Ce def: "The time period encompassing the 14th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "14 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000124 ! 13 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000124 ! 13 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1221,9 +1344,11 @@ id: WBls:0000126 name: 15 min post first-cleavage Ce def: "The time period encompassing the 15th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "15 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000125 ! 14 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000125 ! 14 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1232,9 +1357,11 @@ id: WBls:0000127 name: 16 min post first-cleavage Ce def: "The time period encompassing the 16th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "16 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000126 ! 15 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000126 ! 15 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1243,9 +1370,11 @@ id: WBls:0000128 name: 17 min post first-cleavage Ce def: "The time period encompassing the 17th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "17 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000127 ! 16 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000127 ! 16 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1254,9 +1383,11 @@ id: WBls:0000129 name: 18 min post first-cleavage Ce def: "The time period encompassing the 18th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "18 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000128 ! 17 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000128 ! 17 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1265,9 +1396,11 @@ id: WBls:0000130 name: 19 min post first-cleavage Ce def: "The time period encompassing the 19th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "19 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000129 ! 18 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000129 ! 18 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1276,9 +1409,11 @@ id: WBls:0000131 name: 20 min post first-cleavage Ce def: "The time period encompassing the 20th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "20 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000130 ! 19 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000130 ! 19 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1287,9 +1422,11 @@ id: WBls:0000132 name: 21 min post first-cleavage Ce def: "The time period encompassing the 21st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "21 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000131 ! 20 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000131 ! 20 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1298,9 +1435,11 @@ id: WBls:0000133 name: 22 min post first-cleavage Ce def: "The time period encompassing the 22nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "22 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000132 ! 21 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000132 ! 21 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1309,9 +1448,11 @@ id: WBls:0000134 name: 23 min post first-cleavage Ce def: "The time period encompassing the 23rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "23 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000133 ! 22 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000133 ! 22 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1320,9 +1461,11 @@ id: WBls:0000135 name: 24 min post first-cleavage Ce def: "The time period encompassing the 24th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "24 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000134 ! 23 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000134 ! 23 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1331,9 +1474,11 @@ id: WBls:0000136 name: 25 min post first-cleavage Ce def: "The time period encompassing the 25th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "25 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000135 ! 24 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000135 ! 24 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1342,9 +1487,11 @@ id: WBls:0000137 name: 26 min post first-cleavage Ce def: "The time period encompassing the 26th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "26 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000136 ! 25 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000136 ! 25 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1353,9 +1500,11 @@ id: WBls:0000138 name: 27 min post first-cleavage Ce def: "The time period encompassing the 27th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "27 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000137 ! 26 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000137 ! 26 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1364,9 +1513,11 @@ id: WBls:0000139 name: 28 min post first-cleavage Ce def: "The time period encompassing the 28th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "28 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000138 ! 27 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000138 ! 27 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1375,9 +1526,11 @@ id: WBls:0000140 name: 29 min post first-cleavage Ce def: "The time period encompassing the 29th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "29 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000139 ! 28 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000139 ! 28 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1386,9 +1539,11 @@ id: WBls:0000141 name: 30 min post first-cleavage Ce def: "The time period encompassing the 30th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "30 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000140 ! 29 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000140 ! 29 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1397,9 +1552,11 @@ id: WBls:0000142 name: 31 min post first-cleavage Ce def: "The time period encompassing the 31st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "31 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000141 ! 30 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000141 ! 30 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1408,9 +1565,11 @@ id: WBls:0000143 name: 32 min post first-cleavage Ce def: "The time period encompassing the 32nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "32 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000142 ! 31 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000142 ! 31 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1419,9 +1578,11 @@ id: WBls:0000144 name: 33 min post first-cleavage Ce def: "The time period encompassing the 33rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "33 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000143 ! 32 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000143 ! 32 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1430,9 +1591,11 @@ id: WBls:0000145 name: 34 min post first-cleavage Ce def: "The time period encompassing the 34th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "34 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000144 ! 33 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000144 ! 33 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1441,9 +1604,11 @@ id: WBls:0000146 name: 35 min post first-cleavage Ce def: "The time period encompassing the 35th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "35 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000145 ! 34 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000145 ! 34 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1452,9 +1617,11 @@ id: WBls:0000147 name: 36 min post first-cleavage Ce def: "The time period encompassing the 36th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "36 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000146 ! 35 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000146 ! 35 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1463,9 +1630,11 @@ id: WBls:0000148 name: 37 min post first-cleavage Ce def: "The time period encompassing the 37th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "37 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000147 ! 36 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000147 ! 36 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1474,9 +1643,11 @@ id: WBls:0000149 name: 38 min post first-cleavage Ce def: "The time period encompassing the 38th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "38 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000148 ! 37 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000148 ! 37 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1485,9 +1656,11 @@ id: WBls:0000150 name: 39 min post first-cleavage Ce def: "The time period encompassing the 39th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "39 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000149 ! 38 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000149 ! 38 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1496,9 +1669,11 @@ id: WBls:0000151 name: 40 min post first-cleavage Ce def: "The time period encompassing the 40th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "40 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000150 ! 39 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000150 ! 39 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1507,9 +1682,11 @@ id: WBls:0000152 name: 41 min post first-cleavage Ce def: "The time period encompassing the 41st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "41 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000151 ! 40 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000151 ! 40 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1518,9 +1695,11 @@ id: WBls:0000153 name: 42 min post first-cleavage Ce def: "The time period encompassing the 42nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "42 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000152 ! 41 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000152 ! 41 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1529,9 +1708,11 @@ id: WBls:0000154 name: 43 min post first-cleavage Ce def: "The time period encompassing the 43rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "43 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000153 ! 42 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000153 ! 42 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1540,9 +1721,11 @@ id: WBls:0000155 name: 44 min post first-cleavage Ce def: "The time period encompassing the 44th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "44 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000154 ! 43 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000154 ! 43 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1551,9 +1734,11 @@ id: WBls:0000156 name: 45 min post first-cleavage Ce def: "The time period encompassing the 45th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "45 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000155 ! 44 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000155 ! 44 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1562,9 +1747,11 @@ id: WBls:0000157 name: 46 min post first-cleavage Ce def: "The time period encompassing the 46th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "46 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000156 ! 45 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000156 ! 45 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1573,9 +1760,11 @@ id: WBls:0000158 name: 47 min post first-cleavage Ce def: "The time period encompassing the 47th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "47 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000157 ! 46 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000157 ! 46 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1584,9 +1773,11 @@ id: WBls:0000159 name: 48 min post first-cleavage Ce def: "The time period encompassing the 48th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "48 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000158 ! 47 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000158 ! 47 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1595,9 +1786,11 @@ id: WBls:0000160 name: 49 min post first-cleavage Ce def: "The time period encompassing the 49th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "49 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000159 ! 48 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000159 ! 48 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1606,9 +1799,11 @@ id: WBls:0000161 name: 50 min post first-cleavage Ce def: "The time period encompassing the 50th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "50 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000160 ! 49 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000160 ! 49 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1617,9 +1812,11 @@ id: WBls:0000162 name: 51 min post first-cleavage Ce def: "The time period encompassing the 51st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "51 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000161 ! 50 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000161 ! 50 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1628,9 +1825,11 @@ id: WBls:0000163 name: 52 min post first-cleavage Ce def: "The time period encompassing the 52nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "52 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000162 ! 51 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000162 ! 51 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1639,9 +1838,11 @@ id: WBls:0000164 name: 53 min post first-cleavage Ce def: "The time period encompassing the 53rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "53 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000163 ! 52 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000163 ! 52 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1650,9 +1851,11 @@ id: WBls:0000165 name: 54 min post first-cleavage Ce def: "The time period encompassing the 54th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "54 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000164 ! 53 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000164 ! 53 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1661,9 +1864,11 @@ id: WBls:0000166 name: 55 min post first-cleavage Ce def: "The time period encompassing the 55th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "55 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000165 ! 54 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000165 ! 54 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1672,9 +1877,11 @@ id: WBls:0000167 name: 56 min post first-cleavage Ce def: "The time period encompassing the 56th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "56 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000166 ! 55 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000166 ! 55 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1683,9 +1890,11 @@ id: WBls:0000168 name: 57 min post first-cleavage Ce def: "The time period encompassing the 57th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "57 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000167 ! 56 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000167 ! 56 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1694,9 +1903,11 @@ id: WBls:0000169 name: 58 min post first-cleavage Ce def: "The time period encompassing the 58th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "58 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000168 ! 57 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000168 ! 57 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1705,9 +1916,11 @@ id: WBls:0000170 name: 59 min post first-cleavage Ce def: "The time period encompassing the 59th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "59 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000169 ! 58 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000169 ! 58 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1716,9 +1929,11 @@ id: WBls:0000171 name: 60 min post first-cleavage Ce def: "The time period encompassing the 60th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "60 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000170 ! 59 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000170 ! 59 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1727,9 +1942,11 @@ id: WBls:0000172 name: 61 min post first-cleavage Ce def: "The time period encompassing the 61st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "61 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000171 ! 60 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000171 ! 60 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1738,9 +1955,11 @@ id: WBls:0000173 name: 62 min post first-cleavage Ce def: "The time period encompassing the 62nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "62 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000172 ! 61 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000172 ! 61 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1749,9 +1968,11 @@ id: WBls:0000174 name: 63 min post first-cleavage Ce def: "The time period encompassing the 63rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "63 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000173 ! 62 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000173 ! 62 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1760,9 +1981,11 @@ id: WBls:0000175 name: 64 min post first-cleavage Ce def: "The time period encompassing the 64th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "64 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000174 ! 63 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000174 ! 63 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1771,9 +1994,11 @@ id: WBls:0000176 name: 65 min post first-cleavage Ce def: "The time period encompassing the 65th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "65 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000175 ! 64 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000175 ! 64 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1782,9 +2007,11 @@ id: WBls:0000177 name: 66 min post first-cleavage Ce def: "The time period encompassing the 66th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "66 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000176 ! 65 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000176 ! 65 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1793,9 +2020,11 @@ id: WBls:0000178 name: 67 min post first-cleavage Ce def: "The time period encompassing the 67th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "67 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000177 ! 66 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000177 ! 66 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1804,9 +2033,11 @@ id: WBls:0000179 name: 68 min post first-cleavage Ce def: "The time period encompassing the 68th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "68 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000178 ! 67 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000178 ! 67 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1815,9 +2046,11 @@ id: WBls:0000180 name: 69 min post first-cleavage Ce def: "The time period encompassing the 69th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "69 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000179 ! 68 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000179 ! 68 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1826,9 +2059,11 @@ id: WBls:0000181 name: 70 min post first-cleavage Ce def: "The time period encompassing the 70th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "70 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000180 ! 69 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000180 ! 69 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1837,9 +2072,11 @@ id: WBls:0000182 name: 71 min post first-cleavage Ce def: "The time period encompassing the 71st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "71 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000181 ! 70 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000181 ! 70 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1848,9 +2085,11 @@ id: WBls:0000183 name: 72 min post first-cleavage Ce def: "The time period encompassing the 72nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "72 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000182 ! 71 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000182 ! 71 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1859,9 +2098,11 @@ id: WBls:0000184 name: 73 min post first-cleavage Ce def: "The time period encompassing the 73rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "73 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000183 ! 72 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000183 ! 72 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1870,9 +2111,11 @@ id: WBls:0000185 name: 74 min post first-cleavage Ce def: "The time period encompassing the 74th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "74 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000184 ! 73 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000184 ! 73 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1881,9 +2124,11 @@ id: WBls:0000186 name: 75 min post first-cleavage Ce def: "The time period encompassing the 75th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "75 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000185 ! 74 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000185 ! 74 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1892,9 +2137,11 @@ id: WBls:0000187 name: 76 min post first-cleavage Ce def: "The time period encompassing the 76th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "76 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000186 ! 75 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000186 ! 75 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1903,9 +2150,11 @@ id: WBls:0000188 name: 77 min post first-cleavage Ce def: "The time period encompassing the 77th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "77 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000187 ! 76 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000187 ! 76 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1914,9 +2163,11 @@ id: WBls:0000189 name: 78 min post first-cleavage Ce def: "The time period encompassing the 78th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "78 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000188 ! 77 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000188 ! 77 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1925,9 +2176,11 @@ id: WBls:0000190 name: 79 min post first-cleavage Ce def: "The time period encompassing the 79th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "79 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000189 ! 78 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000189 ! 78 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1936,9 +2189,11 @@ id: WBls:0000191 name: 80 min post first-cleavage Ce def: "The time period encompassing the 80th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "80 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000190 ! 79 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000190 ! 79 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1947,9 +2202,11 @@ id: WBls:0000192 name: 81 min post first-cleavage Ce def: "The time period encompassing the 81st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "81 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000191 ! 80 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000191 ! 80 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1958,9 +2215,11 @@ id: WBls:0000193 name: 82 min post first-cleavage Ce def: "The time period encompassing the 82nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "82 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000192 ! 81 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000192 ! 81 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1969,9 +2228,11 @@ id: WBls:0000194 name: 83 min post first-cleavage Ce def: "The time period encompassing the 83rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "83 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000193 ! 82 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000193 ! 82 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1980,9 +2241,11 @@ id: WBls:0000195 name: 84 min post first-cleavage Ce def: "The time period encompassing the 84th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "84 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000194 ! 83 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000194 ! 83 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -1991,9 +2254,11 @@ id: WBls:0000196 name: 85 min post first-cleavage Ce def: "The time period encompassing the 85th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "85 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000195 ! 84 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000195 ! 84 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2002,9 +2267,11 @@ id: WBls:0000197 name: 86 min post first-cleavage Ce def: "The time period encompassing the 86th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "86 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000196 ! 85 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000196 ! 85 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2013,9 +2280,11 @@ id: WBls:0000198 name: 87 min post first-cleavage Ce def: "The time period encompassing the 87th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "87 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000197 ! 86 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000197 ! 86 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2024,9 +2293,11 @@ id: WBls:0000199 name: 88 min post first-cleavage Ce def: "The time period encompassing the 88th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "88 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000198 ! 87 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000198 ! 87 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2035,9 +2306,11 @@ id: WBls:0000200 name: 89 min post first-cleavage Ce def: "The time period encompassing the 89th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "89 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000199 ! 88 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000199 ! 88 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2046,9 +2319,11 @@ id: WBls:0000201 name: 90 min post first-cleavage Ce def: "The time period encompassing the 90th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "90 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000200 ! 89 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000200 ! 89 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2057,9 +2332,11 @@ id: WBls:0000202 name: 91 min post first-cleavage Ce def: "The time period encompassing the 91st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "91 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000201 ! 90 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000201 ! 90 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2068,9 +2345,11 @@ id: WBls:0000203 name: 92 min post first-cleavage Ce def: "The time period encompassing the 92nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "92 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000202 ! 91 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000202 ! 91 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2079,9 +2358,11 @@ id: WBls:0000204 name: 93 min post first-cleavage Ce def: "The time period encompassing the 93rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "93 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000203 ! 92 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000203 ! 92 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2090,9 +2371,11 @@ id: WBls:0000205 name: 94 min post first-cleavage Ce def: "The time period encompassing the 94th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "94 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000204 ! 93 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000204 ! 93 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2101,9 +2384,11 @@ id: WBls:0000206 name: 95 min post first-cleavage Ce def: "The time period encompassing the 95th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "95 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000205 ! 94 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000205 ! 94 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2112,9 +2397,11 @@ id: WBls:0000207 name: 96 min post first-cleavage Ce def: "The time period encompassing the 96th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "96 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000206 ! 95 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000206 ! 95 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2123,9 +2410,11 @@ id: WBls:0000208 name: 97 min post first-cleavage Ce def: "The time period encompassing the 97th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "97 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000207 ! 96 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000207 ! 96 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2134,9 +2423,11 @@ id: WBls:0000209 name: 98 min post first-cleavage Ce def: "The time period encompassing the 98th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "98 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000208 ! 97 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000208 ! 97 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2145,9 +2436,11 @@ id: WBls:0000210 name: 99 min post first-cleavage Ce def: "The time period encompassing the 99th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "99 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000209 ! 98 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000209 ! 98 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2156,9 +2449,11 @@ id: WBls:0000211 name: 100 min post first-cleavage Ce def: "The time period encompassing the 100th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "100 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000813 ! C. elegans life stage occurring during blastula embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000005 ! blastula embryo Ce -relationship: starts_at_end_of WBls:0000210 ! 99 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000005 ! blastula embryo Ce +relationship: RO:0002087 WBls:0000210 ! 99 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2167,9 +2462,11 @@ id: WBls:0000212 name: 101 min post first-cleavage Ce def: "The time period encompassing the 101st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "101 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000211 ! 100 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000211 ! 100 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2178,9 +2475,11 @@ id: WBls:0000213 name: 102 min post first-cleavage Ce def: "The time period encompassing the 102nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "102 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000212 ! 101 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000212 ! 101 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2189,9 +2488,11 @@ id: WBls:0000214 name: 103 min post first-cleavage Ce def: "The time period encompassing the 103rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "103 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000213 ! 102 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000213 ! 102 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2200,9 +2501,11 @@ id: WBls:0000215 name: 104 min post first-cleavage Ce def: "The time period encompassing the 104th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "104 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000214 ! 103 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000214 ! 103 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2211,9 +2514,11 @@ id: WBls:0000216 name: 105 min post first-cleavage Ce def: "The time period encompassing the 105th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "105 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000215 ! 104 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000215 ! 104 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2222,9 +2527,11 @@ id: WBls:0000217 name: 106 min post first-cleavage Ce def: "The time period encompassing the 106th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "106 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000216 ! 105 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000216 ! 105 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2233,9 +2540,11 @@ id: WBls:0000218 name: 107 min post first-cleavage Ce def: "The time period encompassing the 107th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "107 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000217 ! 106 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000217 ! 106 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2244,9 +2553,11 @@ id: WBls:0000219 name: 108 min post first-cleavage Ce def: "The time period encompassing the 108th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "108 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000218 ! 107 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000218 ! 107 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2255,9 +2566,11 @@ id: WBls:0000220 name: 109 min post first-cleavage Ce def: "The time period encompassing the 109th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "109 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000219 ! 108 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000219 ! 108 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2266,9 +2579,11 @@ id: WBls:0000221 name: 110 min post first-cleavage Ce def: "The time period encompassing the 110th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "110 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000220 ! 109 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000220 ! 109 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2277,9 +2592,11 @@ id: WBls:0000222 name: 111 min post first-cleavage Ce def: "The time period encompassing the 111st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "111 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000221 ! 110 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000221 ! 110 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2288,9 +2605,11 @@ id: WBls:0000223 name: 112 min post first-cleavage Ce def: "The time period encompassing the 112nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "112 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000222 ! 111 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000222 ! 111 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2299,9 +2618,11 @@ id: WBls:0000224 name: 113 min post first-cleavage Ce def: "The time period encompassing the 113rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "113 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000223 ! 112 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000223 ! 112 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2310,9 +2631,11 @@ id: WBls:0000225 name: 114 min post first-cleavage Ce def: "The time period encompassing the 114th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "114 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000224 ! 113 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000224 ! 113 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2321,9 +2644,11 @@ id: WBls:0000226 name: 115 min post first-cleavage Ce def: "The time period encompassing the 115th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "115 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000225 ! 114 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000225 ! 114 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2332,9 +2657,11 @@ id: WBls:0000227 name: 116 min post first-cleavage Ce def: "The time period encompassing the 116th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "116 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000226 ! 115 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000226 ! 115 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2343,9 +2670,11 @@ id: WBls:0000228 name: 117 min post first-cleavage Ce def: "The time period encompassing the 117th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "117 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000227 ! 116 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000227 ! 116 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2354,9 +2683,11 @@ id: WBls:0000229 name: 118 min post first-cleavage Ce def: "The time period encompassing the 118th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "118 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000228 ! 117 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000228 ! 117 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2365,9 +2696,11 @@ id: WBls:0000230 name: 119 min post first-cleavage Ce def: "The time period encompassing the 119th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "119 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000229 ! 118 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000229 ! 118 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2376,9 +2709,11 @@ id: WBls:0000231 name: 120 min post first-cleavage Ce def: "The time period encompassing the 120th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "120 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000230 ! 119 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000230 ! 119 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2387,9 +2722,11 @@ id: WBls:0000232 name: 121 min post first-cleavage Ce def: "The time period encompassing the 121st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "121 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000231 ! 120 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000231 ! 120 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2398,9 +2735,11 @@ id: WBls:0000233 name: 122 min post first-cleavage Ce def: "The time period encompassing the 122nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "122 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000232 ! 121 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000232 ! 121 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2409,9 +2748,11 @@ id: WBls:0000234 name: 123 min post first-cleavage Ce def: "The time period encompassing the 123rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "123 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000233 ! 122 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000233 ! 122 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2420,9 +2761,11 @@ id: WBls:0000235 name: 124 min post first-cleavage Ce def: "The time period encompassing the 124th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "124 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000234 ! 123 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000234 ! 123 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2431,9 +2774,11 @@ id: WBls:0000236 name: 125 min post first-cleavage Ce def: "The time period encompassing the 125th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "125 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000235 ! 124 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000235 ! 124 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2442,9 +2787,11 @@ id: WBls:0000237 name: 126 min post first-cleavage Ce def: "The time period encompassing the 126th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "126 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000236 ! 125 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000236 ! 125 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2453,9 +2800,11 @@ id: WBls:0000238 name: 127 min post first-cleavage Ce def: "The time period encompassing the 127th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "127 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000237 ! 126 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000237 ! 126 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2464,9 +2813,11 @@ id: WBls:0000239 name: 128 min post first-cleavage Ce def: "The time period encompassing the 128th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "128 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000238 ! 127 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000238 ! 127 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2475,9 +2826,11 @@ id: WBls:0000240 name: 129 min post first-cleavage Ce def: "The time period encompassing the 129th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "129 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000239 ! 128 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000239 ! 128 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2486,9 +2839,11 @@ id: WBls:0000241 name: 130 min post first-cleavage Ce def: "The time period encompassing the 130th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "130 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000240 ! 129 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000240 ! 129 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2497,9 +2852,11 @@ id: WBls:0000242 name: 131 min post first-cleavage Ce def: "The time period encompassing the 131st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "131 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000241 ! 130 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000241 ! 130 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2508,9 +2865,11 @@ id: WBls:0000243 name: 132 min post first-cleavage Ce def: "The time period encompassing the 132nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "132 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000242 ! 131 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000242 ! 131 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2519,9 +2878,11 @@ id: WBls:0000244 name: 133 min post first-cleavage Ce def: "The time period encompassing the 133rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "133 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000243 ! 132 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000243 ! 132 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2530,9 +2891,11 @@ id: WBls:0000245 name: 134 min post first-cleavage Ce def: "The time period encompassing the 134th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "134 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000244 ! 133 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000244 ! 133 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2541,9 +2904,11 @@ id: WBls:0000246 name: 135 min post first-cleavage Ce def: "The time period encompassing the 135th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "135 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000245 ! 134 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000245 ! 134 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2552,9 +2917,11 @@ id: WBls:0000247 name: 136 min post first-cleavage Ce def: "The time period encompassing the 136th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "136 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000246 ! 135 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000246 ! 135 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2563,9 +2930,11 @@ id: WBls:0000248 name: 137 min post first-cleavage Ce def: "The time period encompassing the 137th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "137 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000247 ! 136 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000247 ! 136 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2574,9 +2943,11 @@ id: WBls:0000249 name: 138 min post first-cleavage Ce def: "The time period encompassing the 138th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "138 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000248 ! 137 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000248 ! 137 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2585,9 +2956,11 @@ id: WBls:0000250 name: 139 min post first-cleavage Ce def: "The time period encompassing the 139th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "139 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000249 ! 138 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000249 ! 138 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2596,9 +2969,11 @@ id: WBls:0000251 name: 140 min post first-cleavage Ce def: "The time period encompassing the 140th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "140 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000250 ! 139 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000250 ! 139 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2607,9 +2982,11 @@ id: WBls:0000252 name: 141 min post first-cleavage Ce def: "The time period encompassing the 141st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "141 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000251 ! 140 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000251 ! 140 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2618,9 +2995,11 @@ id: WBls:0000253 name: 142 min post first-cleavage Ce def: "The time period encompassing the 142nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "142 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000252 ! 141 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000252 ! 141 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2629,9 +3008,11 @@ id: WBls:0000254 name: 143 min post first-cleavage Ce def: "The time period encompassing the 143rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "143 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000253 ! 142 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000253 ! 142 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2640,9 +3021,11 @@ id: WBls:0000255 name: 144 min post first-cleavage Ce def: "The time period encompassing the 144th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "144 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000254 ! 143 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000254 ! 143 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2651,9 +3034,11 @@ id: WBls:0000256 name: 145 min post first-cleavage Ce def: "The time period encompassing the 145th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "145 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000255 ! 144 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000255 ! 144 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2662,9 +3047,11 @@ id: WBls:0000257 name: 146 min post first-cleavage Ce def: "The time period encompassing the 146th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "146 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000256 ! 145 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000256 ! 145 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2673,9 +3060,11 @@ id: WBls:0000258 name: 147 min post first-cleavage Ce def: "The time period encompassing the 147th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "147 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000257 ! 146 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000257 ! 146 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2684,9 +3073,11 @@ id: WBls:0000259 name: 148 min post first-cleavage Ce def: "The time period encompassing the 148th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "148 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000258 ! 147 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000258 ! 147 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2695,9 +3086,11 @@ id: WBls:0000260 name: 149 min post first-cleavage Ce def: "The time period encompassing the 149th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "149 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000259 ! 148 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000259 ! 148 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2706,9 +3099,11 @@ id: WBls:0000261 name: 150 min post first-cleavage Ce def: "The time period encompassing the 150th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "150 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000260 ! 149 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000260 ! 149 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2717,9 +3112,11 @@ id: WBls:0000262 name: 151 min post first-cleavage Ce def: "The time period encompassing the 151st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "151 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000261 ! 150 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000261 ! 150 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2728,9 +3125,11 @@ id: WBls:0000263 name: 152 min post first-cleavage Ce def: "The time period encompassing the 152nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "152 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000262 ! 151 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000262 ! 151 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2739,9 +3138,11 @@ id: WBls:0000264 name: 153 min post first-cleavage Ce def: "The time period encompassing the 153rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "153 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000263 ! 152 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000263 ! 152 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2750,9 +3151,11 @@ id: WBls:0000265 name: 154 min post first-cleavage Ce def: "The time period encompassing the 154th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "154 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000264 ! 153 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000264 ! 153 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2761,9 +3164,11 @@ id: WBls:0000266 name: 155 min post first-cleavage Ce def: "The time period encompassing the 155th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "155 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000265 ! 154 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000265 ! 154 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2772,9 +3177,11 @@ id: WBls:0000267 name: 156 min post first-cleavage Ce def: "The time period encompassing the 156th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "156 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000266 ! 155 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000266 ! 155 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2783,9 +3190,11 @@ id: WBls:0000268 name: 157 min post first-cleavage Ce def: "The time period encompassing the 157th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "157 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000267 ! 156 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000267 ! 156 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2794,9 +3203,11 @@ id: WBls:0000269 name: 158 min post first-cleavage Ce def: "The time period encompassing the 158th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "158 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000268 ! 157 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000268 ! 157 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2805,9 +3216,11 @@ id: WBls:0000270 name: 159 min post first-cleavage Ce def: "The time period encompassing the 159th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "159 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000269 ! 158 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000269 ! 158 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2816,9 +3229,11 @@ id: WBls:0000271 name: 160 min post first-cleavage Ce def: "The time period encompassing the 160th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "160 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000270 ! 159 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000270 ! 159 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2827,9 +3242,11 @@ id: WBls:0000272 name: 161 min post first-cleavage Ce def: "The time period encompassing the 161st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "161 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000271 ! 160 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000271 ! 160 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2838,9 +3255,11 @@ id: WBls:0000273 name: 162 min post first-cleavage Ce def: "The time period encompassing the 162nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "162 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000272 ! 161 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000272 ! 161 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2849,9 +3268,11 @@ id: WBls:0000274 name: 163 min post first-cleavage Ce def: "The time period encompassing the 163rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "163 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000273 ! 162 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000273 ! 162 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2860,9 +3281,11 @@ id: WBls:0000275 name: 164 min post first-cleavage Ce def: "The time period encompassing the 164th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "164 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000274 ! 163 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000274 ! 163 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2871,9 +3294,11 @@ id: WBls:0000276 name: 165 min post first-cleavage Ce def: "The time period encompassing the 165th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "165 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000275 ! 164 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000275 ! 164 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2882,9 +3307,11 @@ id: WBls:0000277 name: 166 min post first-cleavage Ce def: "The time period encompassing the 166th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "166 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000276 ! 165 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000276 ! 165 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2893,9 +3320,11 @@ id: WBls:0000278 name: 167 min post first-cleavage Ce def: "The time period encompassing the 167th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "167 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000277 ! 166 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000277 ! 166 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2904,9 +3333,11 @@ id: WBls:0000279 name: 168 min post first-cleavage Ce def: "The time period encompassing the 168th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "168 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000278 ! 167 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000278 ! 167 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2915,9 +3346,11 @@ id: WBls:0000280 name: 169 min post first-cleavage Ce def: "The time period encompassing the 169th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "169 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000279 ! 168 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000279 ! 168 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2926,9 +3359,11 @@ id: WBls:0000281 name: 170 min post first-cleavage Ce def: "The time period encompassing the 170th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "170 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000280 ! 169 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000280 ! 169 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2937,9 +3372,11 @@ id: WBls:0000282 name: 171 min post first-cleavage Ce def: "The time period encompassing the 171st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "171 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000281 ! 170 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000281 ! 170 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2948,9 +3385,11 @@ id: WBls:0000283 name: 172 min post first-cleavage Ce def: "The time period encompassing the 172nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "172 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000282 ! 171 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000282 ! 171 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2959,9 +3398,11 @@ id: WBls:0000284 name: 173 min post first-cleavage Ce def: "The time period encompassing the 173rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "173 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000283 ! 172 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000283 ! 172 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2970,9 +3411,11 @@ id: WBls:0000285 name: 174 min post first-cleavage Ce def: "The time period encompassing the 174th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "174 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000284 ! 173 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000284 ! 173 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2981,9 +3424,11 @@ id: WBls:0000286 name: 175 min post first-cleavage Ce def: "The time period encompassing the 175th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "175 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000285 ! 174 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000285 ! 174 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -2992,9 +3437,11 @@ id: WBls:0000287 name: 176 min post first-cleavage Ce def: "The time period encompassing the 176th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "176 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000286 ! 175 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000286 ! 175 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3003,9 +3450,11 @@ id: WBls:0000288 name: 177 min post first-cleavage Ce def: "The time period encompassing the 177th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "177 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000287 ! 176 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000287 ! 176 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3014,9 +3463,11 @@ id: WBls:0000289 name: 178 min post first-cleavage Ce def: "The time period encompassing the 178th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "178 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000288 ! 177 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000288 ! 177 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3025,9 +3476,11 @@ id: WBls:0000290 name: 179 min post first-cleavage Ce def: "The time period encompassing the 179th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "179 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000289 ! 178 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000289 ! 178 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3036,9 +3489,11 @@ id: WBls:0000291 name: 180 min post first-cleavage Ce def: "The time period encompassing the 180th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "180 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000290 ! 179 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000290 ! 179 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3047,9 +3502,11 @@ id: WBls:0000292 name: 181 min post first-cleavage Ce def: "The time period encompassing the 181st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "181 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000291 ! 180 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000291 ! 180 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3058,9 +3515,11 @@ id: WBls:0000293 name: 182 min post first-cleavage Ce def: "The time period encompassing the 182nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "182 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000292 ! 181 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000292 ! 181 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3069,9 +3528,11 @@ id: WBls:0000294 name: 183 min post first-cleavage Ce def: "The time period encompassing the 183rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "183 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000293 ! 182 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000293 ! 182 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3080,9 +3541,11 @@ id: WBls:0000295 name: 184 min post first-cleavage Ce def: "The time period encompassing the 184th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "184 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000294 ! 183 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000294 ! 183 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3091,9 +3554,11 @@ id: WBls:0000296 name: 185 min post first-cleavage Ce def: "The time period encompassing the 185th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "185 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000295 ! 184 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000295 ! 184 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3102,9 +3567,11 @@ id: WBls:0000297 name: 186 min post first-cleavage Ce def: "The time period encompassing the 186th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "186 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000296 ! 185 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000296 ! 185 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3113,9 +3580,11 @@ id: WBls:0000298 name: 187 min post first-cleavage Ce def: "The time period encompassing the 187th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "187 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000297 ! 186 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000297 ! 186 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3124,9 +3593,11 @@ id: WBls:0000299 name: 188 min post first-cleavage Ce def: "The time period encompassing the 188th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "188 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000298 ! 187 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000298 ! 187 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3135,9 +3606,11 @@ id: WBls:0000300 name: 189 min post first-cleavage Ce def: "The time period encompassing the 189th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "189 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000299 ! 188 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000299 ! 188 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3146,9 +3619,11 @@ id: WBls:0000301 name: 190 min post first-cleavage Ce def: "The time period encompassing the 190th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "190 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000300 ! 189 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000300 ! 189 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3157,9 +3632,11 @@ id: WBls:0000302 name: 191 min post first-cleavage Ce def: "The time period encompassing the 191st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "191 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000301 ! 190 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000301 ! 190 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3168,9 +3645,11 @@ id: WBls:0000303 name: 192 min post first-cleavage Ce def: "The time period encompassing the 192nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "192 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000302 ! 191 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000302 ! 191 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3179,9 +3658,11 @@ id: WBls:0000304 name: 193 min post first-cleavage Ce def: "The time period encompassing the 193rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "193 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000303 ! 192 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000303 ! 192 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3190,9 +3671,11 @@ id: WBls:0000305 name: 194 min post first-cleavage Ce def: "The time period encompassing the 194th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "194 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000304 ! 193 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000304 ! 193 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3201,9 +3684,11 @@ id: WBls:0000306 name: 195 min post first-cleavage Ce def: "The time period encompassing the 195th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "195 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000305 ! 194 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000305 ! 194 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3212,9 +3697,11 @@ id: WBls:0000307 name: 196 min post first-cleavage Ce def: "The time period encompassing the 196th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "196 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000306 ! 195 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000306 ! 195 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3223,9 +3710,11 @@ id: WBls:0000308 name: 197 min post first-cleavage Ce def: "The time period encompassing the 197th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "197 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000307 ! 196 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000307 ! 196 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3234,9 +3723,11 @@ id: WBls:0000309 name: 198 min post first-cleavage Ce def: "The time period encompassing the 198th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "198 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000308 ! 197 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000308 ! 197 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3245,9 +3736,11 @@ id: WBls:0000310 name: 199 min post first-cleavage Ce def: "The time period encompassing the 199th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "199 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000309 ! 198 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000309 ! 198 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3256,9 +3749,11 @@ id: WBls:0000311 name: 200 min post first-cleavage Ce def: "The time period encompassing the 200th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "200 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000310 ! 199 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000310 ! 199 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3267,9 +3762,11 @@ id: WBls:0000312 name: 201 min post first-cleavage Ce def: "The time period encompassing the 201st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "201 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000311 ! 200 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000311 ! 200 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3278,9 +3775,11 @@ id: WBls:0000313 name: 202 min post first-cleavage Ce def: "The time period encompassing the 202nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "202 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000312 ! 201 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000312 ! 201 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3289,9 +3788,11 @@ id: WBls:0000314 name: 203 min post first-cleavage Ce def: "The time period encompassing the 203rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "203 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000313 ! 202 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000313 ! 202 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3300,9 +3801,11 @@ id: WBls:0000315 name: 204 min post first-cleavage Ce def: "The time period encompassing the 204th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "204 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000314 ! 203 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000314 ! 203 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3311,9 +3814,11 @@ id: WBls:0000316 name: 205 min post first-cleavage Ce def: "The time period encompassing the 205th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "205 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000315 ! 204 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000315 ! 204 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3322,9 +3827,11 @@ id: WBls:0000317 name: 206 min post first-cleavage Ce def: "The time period encompassing the 206th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "206 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000316 ! 205 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000316 ! 205 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3333,9 +3840,11 @@ id: WBls:0000318 name: 207 min post first-cleavage Ce def: "The time period encompassing the 207th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "207 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000317 ! 206 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000317 ! 206 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3344,9 +3853,11 @@ id: WBls:0000319 name: 208 min post first-cleavage Ce def: "The time period encompassing the 208th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "208 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000318 ! 207 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000318 ! 207 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3355,9 +3866,11 @@ id: WBls:0000320 name: 209 min post first-cleavage Ce def: "The time period encompassing the 209th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "209 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000319 ! 208 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000319 ! 208 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3366,9 +3879,11 @@ id: WBls:0000321 name: 210 min post first-cleavage Ce def: "The time period encompassing the 210th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "210 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000320 ! 209 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000320 ! 209 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3377,9 +3892,11 @@ id: WBls:0000322 name: 211 min post first-cleavage Ce def: "The time period encompassing the 211st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "211 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000321 ! 210 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000321 ! 210 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3388,9 +3905,11 @@ id: WBls:0000323 name: 212 min post first-cleavage Ce def: "The time period encompassing the 212nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "212 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000322 ! 211 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000322 ! 211 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3399,9 +3918,11 @@ id: WBls:0000324 name: 213 min post first-cleavage Ce def: "The time period encompassing the 213rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "213 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000323 ! 212 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000323 ! 212 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3410,9 +3931,11 @@ id: WBls:0000325 name: 214 min post first-cleavage Ce def: "The time period encompassing the 214th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "214 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000324 ! 213 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000324 ! 213 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3421,9 +3944,11 @@ id: WBls:0000326 name: 215 min post first-cleavage Ce def: "The time period encompassing the 215th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "215 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000325 ! 214 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000325 ! 214 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3432,9 +3957,11 @@ id: WBls:0000327 name: 216 min post first-cleavage Ce def: "The time period encompassing the 216th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "216 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000326 ! 215 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000326 ! 215 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3443,9 +3970,11 @@ id: WBls:0000328 name: 217 min post first-cleavage Ce def: "The time period encompassing the 217th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "217 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000327 ! 216 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000327 ! 216 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3454,9 +3983,11 @@ id: WBls:0000329 name: 218 min post first-cleavage Ce def: "The time period encompassing the 218th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "218 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000328 ! 217 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000328 ! 217 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3465,9 +3996,11 @@ id: WBls:0000330 name: 219 min post first-cleavage Ce def: "The time period encompassing the 219th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "219 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000329 ! 218 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000329 ! 218 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3476,9 +4009,11 @@ id: WBls:0000331 name: 220 min post first-cleavage Ce def: "The time period encompassing the 220th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "220 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000330 ! 219 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000330 ! 219 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3487,9 +4022,11 @@ id: WBls:0000332 name: 221 min post first-cleavage Ce def: "The time period encompassing the 221st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "221 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000331 ! 220 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000331 ! 220 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3498,9 +4035,11 @@ id: WBls:0000333 name: 222 min post first-cleavage Ce def: "The time period encompassing the 222nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "222 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000332 ! 221 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000332 ! 221 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3509,9 +4048,11 @@ id: WBls:0000334 name: 223 min post first-cleavage Ce def: "The time period encompassing the 223rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "223 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000333 ! 222 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000333 ! 222 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3520,9 +4061,11 @@ id: WBls:0000335 name: 224 min post first-cleavage Ce def: "The time period encompassing the 224th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "224 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000334 ! 223 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000334 ! 223 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3531,9 +4074,11 @@ id: WBls:0000336 name: 225 min post first-cleavage Ce def: "The time period encompassing the 225th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "225 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000335 ! 224 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000335 ! 224 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3542,9 +4087,11 @@ id: WBls:0000337 name: 226 min post first-cleavage Ce def: "The time period encompassing the 226th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "226 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000336 ! 225 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000336 ! 225 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3553,9 +4100,11 @@ id: WBls:0000338 name: 227 min post first-cleavage Ce def: "The time period encompassing the 227th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "227 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000337 ! 226 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000337 ! 226 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3564,9 +4113,11 @@ id: WBls:0000339 name: 228 min post first-cleavage Ce def: "The time period encompassing the 228th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "228 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000338 ! 227 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000338 ! 227 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3575,9 +4126,11 @@ id: WBls:0000340 name: 229 min post first-cleavage Ce def: "The time period encompassing the 229th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "229 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000339 ! 228 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000339 ! 228 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3586,9 +4139,11 @@ id: WBls:0000341 name: 230 min post first-cleavage Ce def: "The time period encompassing the 230th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "230 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000340 ! 229 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000340 ! 229 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3597,9 +4152,11 @@ id: WBls:0000342 name: 231 min post first-cleavage Ce def: "The time period encompassing the 231st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "231 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000341 ! 230 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000341 ! 230 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3608,9 +4165,11 @@ id: WBls:0000343 name: 232 min post first-cleavage Ce def: "The time period encompassing the 232nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "232 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000342 ! 231 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000342 ! 231 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3619,9 +4178,11 @@ id: WBls:0000344 name: 233 min post first-cleavage Ce def: "The time period encompassing the 233rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "233 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000343 ! 232 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000343 ! 232 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3630,9 +4191,11 @@ id: WBls:0000345 name: 234 min post first-cleavage Ce def: "The time period encompassing the 234th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "234 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000344 ! 233 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000344 ! 233 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3641,9 +4204,11 @@ id: WBls:0000346 name: 235 min post first-cleavage Ce def: "The time period encompassing the 235th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "235 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000345 ! 234 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000345 ! 234 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3652,9 +4217,11 @@ id: WBls:0000347 name: 236 min post first-cleavage Ce def: "The time period encompassing the 236th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "236 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000346 ! 235 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000346 ! 235 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3663,9 +4230,11 @@ id: WBls:0000348 name: 237 min post first-cleavage Ce def: "The time period encompassing the 237th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "237 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000347 ! 236 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000347 ! 236 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3674,9 +4243,11 @@ id: WBls:0000349 name: 238 min post first-cleavage Ce def: "The time period encompassing the 238th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "238 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000348 ! 237 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000348 ! 237 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3685,9 +4256,11 @@ id: WBls:0000350 name: 239 min post first-cleavage Ce def: "The time period encompassing the 239th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "239 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000349 ! 238 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000349 ! 238 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3696,9 +4269,11 @@ id: WBls:0000351 name: 240 min post first-cleavage Ce def: "The time period encompassing the 240th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "240 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000350 ! 239 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000350 ! 239 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3707,9 +4282,11 @@ id: WBls:0000352 name: 241 min post first-cleavage Ce def: "The time period encompassing the 241st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "241 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000351 ! 240 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000351 ! 240 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3718,9 +4295,11 @@ id: WBls:0000353 name: 242 min post first-cleavage Ce def: "The time period encompassing the 242nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "242 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000352 ! 241 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000352 ! 241 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3729,9 +4308,11 @@ id: WBls:0000354 name: 243 min post first-cleavage Ce def: "The time period encompassing the 243rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "243 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000353 ! 242 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000353 ! 242 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3740,9 +4321,11 @@ id: WBls:0000355 name: 244 min post first-cleavage Ce def: "The time period encompassing the 244th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "244 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000354 ! 243 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000354 ! 243 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3751,9 +4334,11 @@ id: WBls:0000356 name: 245 min post first-cleavage Ce def: "The time period encompassing the 245th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "245 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000355 ! 244 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000355 ! 244 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3762,9 +4347,11 @@ id: WBls:0000357 name: 246 min post first-cleavage Ce def: "The time period encompassing the 246th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "246 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000356 ! 245 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000356 ! 245 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3773,9 +4360,11 @@ id: WBls:0000358 name: 247 min post first-cleavage Ce def: "The time period encompassing the 247th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "247 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000357 ! 246 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000357 ! 246 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3784,9 +4373,11 @@ id: WBls:0000359 name: 248 min post first-cleavage Ce def: "The time period encompassing the 248th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "248 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000358 ! 247 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000358 ! 247 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3795,9 +4386,11 @@ id: WBls:0000360 name: 249 min post first-cleavage Ce def: "The time period encompassing the 249th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "249 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000359 ! 248 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000359 ! 248 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3806,9 +4399,11 @@ id: WBls:0000361 name: 250 min post first-cleavage Ce def: "The time period encompassing the 250th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "250 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000360 ! 249 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000360 ! 249 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3817,9 +4412,11 @@ id: WBls:0000362 name: 251 min post first-cleavage Ce def: "The time period encompassing the 251st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "251 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000361 ! 250 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000361 ! 250 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3828,9 +4425,11 @@ id: WBls:0000363 name: 252 min post first-cleavage Ce def: "The time period encompassing the 252nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "252 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000362 ! 251 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000362 ! 251 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3839,9 +4438,11 @@ id: WBls:0000364 name: 253 min post first-cleavage Ce def: "The time period encompassing the 253rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "253 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000363 ! 252 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000363 ! 252 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3850,9 +4451,11 @@ id: WBls:0000365 name: 254 min post first-cleavage Ce def: "The time period encompassing the 254th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "254 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000364 ! 253 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000364 ! 253 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3861,9 +4464,11 @@ id: WBls:0000366 name: 255 min post first-cleavage Ce def: "The time period encompassing the 255th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "255 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000365 ! 254 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000365 ! 254 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3872,9 +4477,11 @@ id: WBls:0000367 name: 256 min post first-cleavage Ce def: "The time period encompassing the 256th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "256 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000366 ! 255 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000366 ! 255 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3883,9 +4490,11 @@ id: WBls:0000368 name: 257 min post first-cleavage Ce def: "The time period encompassing the 257th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "257 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000367 ! 256 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000367 ! 256 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3894,9 +4503,11 @@ id: WBls:0000369 name: 258 min post first-cleavage Ce def: "The time period encompassing the 258th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "258 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000368 ! 257 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000368 ! 257 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3905,9 +4516,11 @@ id: WBls:0000370 name: 259 min post first-cleavage Ce def: "The time period encompassing the 259th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "259 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000369 ! 258 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000369 ! 258 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3916,9 +4529,11 @@ id: WBls:0000371 name: 260 min post first-cleavage Ce def: "The time period encompassing the 260th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "260 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000370 ! 259 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000370 ! 259 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3927,9 +4542,11 @@ id: WBls:0000372 name: 261 min post first-cleavage Ce def: "The time period encompassing the 261st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "261 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000371 ! 260 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000371 ! 260 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3938,9 +4555,11 @@ id: WBls:0000373 name: 262 min post first-cleavage Ce def: "The time period encompassing the 262nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "262 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000372 ! 261 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000372 ! 261 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3949,9 +4568,11 @@ id: WBls:0000374 name: 263 min post first-cleavage Ce def: "The time period encompassing the 263rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "263 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000373 ! 262 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000373 ! 262 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3960,9 +4581,11 @@ id: WBls:0000375 name: 264 min post first-cleavage Ce def: "The time period encompassing the 264th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "264 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000374 ! 263 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000374 ! 263 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3971,9 +4594,11 @@ id: WBls:0000376 name: 265 min post first-cleavage Ce def: "The time period encompassing the 265th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "265 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000375 ! 264 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000375 ! 264 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3982,9 +4607,11 @@ id: WBls:0000377 name: 266 min post first-cleavage Ce def: "The time period encompassing the 266th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "266 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000376 ! 265 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000376 ! 265 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -3993,9 +4620,11 @@ id: WBls:0000378 name: 267 min post first-cleavage Ce def: "The time period encompassing the 267th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "267 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000377 ! 266 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000377 ! 266 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4004,9 +4633,11 @@ id: WBls:0000379 name: 268 min post first-cleavage Ce def: "The time period encompassing the 268th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "268 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000378 ! 267 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000378 ! 267 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4015,9 +4646,11 @@ id: WBls:0000380 name: 269 min post first-cleavage Ce def: "The time period encompassing the 269th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "269 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000379 ! 268 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000379 ! 268 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4026,9 +4659,11 @@ id: WBls:0000381 name: 270 min post first-cleavage Ce def: "The time period encompassing the 270th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "270 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000380 ! 269 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000380 ! 269 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4037,9 +4672,11 @@ id: WBls:0000382 name: 271 min post first-cleavage Ce def: "The time period encompassing the 271st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "271 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000381 ! 270 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000381 ! 270 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4048,9 +4685,11 @@ id: WBls:0000383 name: 272 min post first-cleavage Ce def: "The time period encompassing the 272nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "272 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000382 ! 271 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000382 ! 271 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4059,9 +4698,11 @@ id: WBls:0000384 name: 273 min post first-cleavage Ce def: "The time period encompassing the 273rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "273 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000383 ! 272 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000383 ! 272 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4070,9 +4711,11 @@ id: WBls:0000385 name: 274 min post first-cleavage Ce def: "The time period encompassing the 274th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "274 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000384 ! 273 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000384 ! 273 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4081,9 +4724,11 @@ id: WBls:0000386 name: 275 min post first-cleavage Ce def: "The time period encompassing the 275th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "275 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000385 ! 274 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000385 ! 274 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4092,9 +4737,11 @@ id: WBls:0000387 name: 276 min post first-cleavage Ce def: "The time period encompassing the 276th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "276 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000386 ! 275 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000386 ! 275 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4103,9 +4750,11 @@ id: WBls:0000388 name: 277 min post first-cleavage Ce def: "The time period encompassing the 277th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "277 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000387 ! 276 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000387 ! 276 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4114,9 +4763,11 @@ id: WBls:0000389 name: 278 min post first-cleavage Ce def: "The time period encompassing the 278th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "278 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000388 ! 277 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000388 ! 277 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4125,9 +4776,11 @@ id: WBls:0000390 name: 279 min post first-cleavage Ce def: "The time period encompassing the 279th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "279 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000389 ! 278 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000389 ! 278 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4136,9 +4789,11 @@ id: WBls:0000391 name: 280 min post first-cleavage Ce def: "The time period encompassing the 280th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "280 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000390 ! 279 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000390 ! 279 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4147,9 +4802,11 @@ id: WBls:0000392 name: 281 min post first-cleavage Ce def: "The time period encompassing the 281st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "281 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000391 ! 280 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000391 ! 280 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4158,9 +4815,11 @@ id: WBls:0000393 name: 282 min post first-cleavage Ce def: "The time period encompassing the 282nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "282 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000392 ! 281 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000392 ! 281 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4169,9 +4828,11 @@ id: WBls:0000394 name: 283 min post first-cleavage Ce def: "The time period encompassing the 283rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "283 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000393 ! 282 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000393 ! 282 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4180,9 +4841,11 @@ id: WBls:0000395 name: 284 min post first-cleavage Ce def: "The time period encompassing the 284th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "284 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000394 ! 283 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000394 ! 283 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4191,9 +4854,11 @@ id: WBls:0000396 name: 285 min post first-cleavage Ce def: "The time period encompassing the 285th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "285 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000395 ! 284 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000395 ! 284 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4202,9 +4867,11 @@ id: WBls:0000397 name: 286 min post first-cleavage Ce def: "The time period encompassing the 286th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "286 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000396 ! 285 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000396 ! 285 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4213,9 +4880,11 @@ id: WBls:0000398 name: 287 min post first-cleavage Ce def: "The time period encompassing the 287th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "287 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000397 ! 286 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000397 ! 286 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4224,9 +4893,11 @@ id: WBls:0000399 name: 288 min post first-cleavage Ce def: "The time period encompassing the 288th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "288 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000398 ! 287 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000398 ! 287 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4235,9 +4906,11 @@ id: WBls:0000400 name: 289 min post first-cleavage Ce def: "The time period encompassing the 289th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "289 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000399 ! 288 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000399 ! 288 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4246,9 +4919,11 @@ id: WBls:0000401 name: 290 min post first-cleavage Ce def: "The time period encompassing the 290th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "290 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000814 ! C. elegans life stage occurring during gastrulation is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000010 ! gastrulating embryo Ce -relationship: starts_at_end_of WBls:0000400 ! 289 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000010 ! gastrulating embryo Ce +relationship: RO:0002087 WBls:0000400 ! 289 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4257,9 +4932,11 @@ id: WBls:0000402 name: 291 min post first-cleavage Ce def: "The time period encompassing the 291st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "291 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000815 ! C. elegans life stage occurring during enclosing embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000013 ! enclosing embryo Ce -relationship: starts_at_end_of WBls:0000401 ! 290 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000013 ! enclosing embryo Ce +relationship: RO:0002087 WBls:0000401 ! 290 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4268,9 +4945,11 @@ id: WBls:0000403 name: 292 min post first-cleavage Ce def: "The time period encompassing the 292nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "292 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000815 ! C. elegans life stage occurring during enclosing embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000013 ! enclosing embryo Ce -relationship: starts_at_end_of WBls:0000402 ! 291 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000013 ! enclosing embryo Ce +relationship: RO:0002087 WBls:0000402 ! 291 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4279,9 +4958,11 @@ id: WBls:0000404 name: 293 min post first-cleavage Ce def: "The time period encompassing the 293rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "293 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000815 ! C. elegans life stage occurring during enclosing embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000013 ! enclosing embryo Ce -relationship: starts_at_end_of WBls:0000403 ! 292 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000013 ! enclosing embryo Ce +relationship: RO:0002087 WBls:0000403 ! 292 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4290,9 +4971,11 @@ id: WBls:0000405 name: 294 min post first-cleavage Ce def: "The time period encompassing the 294th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "294 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000815 ! C. elegans life stage occurring during enclosing embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000013 ! enclosing embryo Ce -relationship: starts_at_end_of WBls:0000404 ! 293 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000013 ! enclosing embryo Ce +relationship: RO:0002087 WBls:0000404 ! 293 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4301,9 +4984,11 @@ id: WBls:0000406 name: 295 min post first-cleavage Ce def: "The time period encompassing the 295th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "295 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000815 ! C. elegans life stage occurring during enclosing embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000013 ! enclosing embryo Ce -relationship: starts_at_end_of WBls:0000405 ! 294 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000013 ! enclosing embryo Ce +relationship: RO:0002087 WBls:0000405 ! 294 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4312,9 +4997,11 @@ id: WBls:0000407 name: 296 min post first-cleavage Ce def: "The time period encompassing the 296th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "296 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000815 ! C. elegans life stage occurring during enclosing embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000013 ! enclosing embryo Ce -relationship: starts_at_end_of WBls:0000406 ! 295 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000013 ! enclosing embryo Ce +relationship: RO:0002087 WBls:0000406 ! 295 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4323,9 +5010,11 @@ id: WBls:0000408 name: 297 min post first-cleavage Ce def: "The time period encompassing the 297th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "297 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000815 ! C. elegans life stage occurring during enclosing embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000013 ! enclosing embryo Ce -relationship: starts_at_end_of WBls:0000407 ! 296 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000013 ! enclosing embryo Ce +relationship: RO:0002087 WBls:0000407 ! 296 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4334,9 +5023,11 @@ id: WBls:0000409 name: 298 min post first-cleavage Ce def: "The time period encompassing the 298th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "298 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000815 ! C. elegans life stage occurring during enclosing embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000013 ! enclosing embryo Ce -relationship: starts_at_end_of WBls:0000408 ! 297 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000013 ! enclosing embryo Ce +relationship: RO:0002087 WBls:0000408 ! 297 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4345,9 +5036,11 @@ id: WBls:0000410 name: 299 min post first-cleavage Ce def: "The time period encompassing the 299th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "299 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000815 ! C. elegans life stage occurring during enclosing embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000013 ! enclosing embryo Ce -relationship: starts_at_end_of WBls:0000409 ! 298 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000013 ! enclosing embryo Ce +relationship: RO:0002087 WBls:0000409 ! 298 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4356,9 +5049,11 @@ id: WBls:0000411 name: 300 min post first-cleavage Ce def: "The time period encompassing the 300th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "300 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000815 ! C. elegans life stage occurring during enclosing embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000013 ! enclosing embryo Ce -relationship: starts_at_end_of WBls:0000410 ! 299 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000013 ! enclosing embryo Ce +relationship: RO:0002087 WBls:0000410 ! 299 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4367,9 +5062,11 @@ id: WBls:0000412 name: 301 min post first-cleavage Ce def: "The time period encompassing the 301st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "301 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000815 ! C. elegans life stage occurring during enclosing embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000013 ! enclosing embryo Ce -relationship: starts_at_end_of WBls:0000411 ! 300 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000013 ! enclosing embryo Ce +relationship: RO:0002087 WBls:0000411 ! 300 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4378,9 +5075,11 @@ id: WBls:0000413 name: 302 min post first-cleavage Ce def: "The time period encompassing the 302nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "302 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000815 ! C. elegans life stage occurring during enclosing embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000013 ! enclosing embryo Ce -relationship: starts_at_end_of WBls:0000412 ! 301 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000013 ! enclosing embryo Ce +relationship: RO:0002087 WBls:0000412 ! 301 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4389,9 +5088,11 @@ id: WBls:0000414 name: 303 min post first-cleavage Ce def: "The time period encompassing the 303rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "303 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000815 ! C. elegans life stage occurring during enclosing embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000013 ! enclosing embryo Ce -relationship: starts_at_end_of WBls:0000413 ! 302 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000013 ! enclosing embryo Ce +relationship: RO:0002087 WBls:0000413 ! 302 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4400,9 +5101,11 @@ id: WBls:0000415 name: 304 min post first-cleavage Ce def: "The time period encompassing the 304th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "304 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000815 ! C. elegans life stage occurring during enclosing embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000013 ! enclosing embryo Ce -relationship: starts_at_end_of WBls:0000414 ! 303 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000013 ! enclosing embryo Ce +relationship: RO:0002087 WBls:0000414 ! 303 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4411,9 +5114,11 @@ id: WBls:0000416 name: 305 min post first-cleavage Ce def: "The time period encompassing the 305th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "305 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000815 ! C. elegans life stage occurring during enclosing embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000013 ! enclosing embryo Ce -relationship: starts_at_end_of WBls:0000415 ! 304 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000013 ! enclosing embryo Ce +relationship: RO:0002087 WBls:0000415 ! 304 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4422,9 +5127,11 @@ id: WBls:0000417 name: 306 min post first-cleavage Ce def: "The time period encompassing the 306th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "306 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000815 ! C. elegans life stage occurring during enclosing embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000013 ! enclosing embryo Ce -relationship: starts_at_end_of WBls:0000416 ! 305 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000013 ! enclosing embryo Ce +relationship: RO:0002087 WBls:0000416 ! 305 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4433,9 +5140,11 @@ id: WBls:0000418 name: 307 min post first-cleavage Ce def: "The time period encompassing the 307th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "307 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000815 ! C. elegans life stage occurring during enclosing embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000013 ! enclosing embryo Ce -relationship: starts_at_end_of WBls:0000417 ! 306 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000013 ! enclosing embryo Ce +relationship: RO:0002087 WBls:0000417 ! 306 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4444,9 +5153,11 @@ id: WBls:0000419 name: 308 min post first-cleavage Ce def: "The time period encompassing the 308th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "308 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000815 ! C. elegans life stage occurring during enclosing embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000013 ! enclosing embryo Ce -relationship: starts_at_end_of WBls:0000418 ! 307 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000013 ! enclosing embryo Ce +relationship: RO:0002087 WBls:0000418 ! 307 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4455,9 +5166,11 @@ id: WBls:0000420 name: 309 min post first-cleavage Ce def: "The time period encompassing the 309th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "309 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000815 ! C. elegans life stage occurring during enclosing embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000013 ! enclosing embryo Ce -relationship: starts_at_end_of WBls:0000419 ! 308 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000013 ! enclosing embryo Ce +relationship: RO:0002087 WBls:0000419 ! 308 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4466,9 +5179,11 @@ id: WBls:0000421 name: 310 min post first-cleavage Ce def: "The time period encompassing the 310th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "310 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000815 ! C. elegans life stage occurring during enclosing embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000013 ! enclosing embryo Ce -relationship: starts_at_end_of WBls:0000420 ! 309 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000013 ! enclosing embryo Ce +relationship: RO:0002087 WBls:0000420 ! 309 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4477,9 +5192,11 @@ id: WBls:0000422 name: 311 min post first-cleavage Ce def: "The time period encompassing the 311st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "311 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000815 ! C. elegans life stage occurring during enclosing embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000013 ! enclosing embryo Ce -relationship: starts_at_end_of WBls:0000421 ! 310 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000013 ! enclosing embryo Ce +relationship: RO:0002087 WBls:0000421 ! 310 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4488,9 +5205,11 @@ id: WBls:0000423 name: 312 min post first-cleavage Ce def: "The time period encompassing the 312nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "312 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000815 ! C. elegans life stage occurring during enclosing embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000013 ! enclosing embryo Ce -relationship: starts_at_end_of WBls:0000422 ! 311 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000013 ! enclosing embryo Ce +relationship: RO:0002087 WBls:0000422 ! 311 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4499,9 +5218,11 @@ id: WBls:0000424 name: 313 min post first-cleavage Ce def: "The time period encompassing the 313rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "313 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000815 ! C. elegans life stage occurring during enclosing embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000013 ! enclosing embryo Ce -relationship: starts_at_end_of WBls:0000423 ! 312 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000013 ! enclosing embryo Ce +relationship: RO:0002087 WBls:0000423 ! 312 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4510,9 +5231,11 @@ id: WBls:0000425 name: 314 min post first-cleavage Ce def: "The time period encompassing the 314th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "314 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000815 ! C. elegans life stage occurring during enclosing embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000013 ! enclosing embryo Ce -relationship: starts_at_end_of WBls:0000424 ! 313 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000013 ! enclosing embryo Ce +relationship: RO:0002087 WBls:0000424 ! 313 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4521,9 +5244,11 @@ id: WBls:0000426 name: 315 min post first-cleavage Ce def: "The time period encompassing the 315th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "315 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000815 ! C. elegans life stage occurring during enclosing embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000013 ! enclosing embryo Ce -relationship: starts_at_end_of WBls:0000425 ! 314 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000013 ! enclosing embryo Ce +relationship: RO:0002087 WBls:0000425 ! 314 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4532,9 +5257,11 @@ id: WBls:0000427 name: 316 min post first-cleavage Ce def: "The time period encompassing the 316th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "316 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000815 ! C. elegans life stage occurring during enclosing embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000013 ! enclosing embryo Ce -relationship: starts_at_end_of WBls:0000426 ! 315 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000013 ! enclosing embryo Ce +relationship: RO:0002087 WBls:0000426 ! 315 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4543,9 +5270,11 @@ id: WBls:0000428 name: 317 min post first-cleavage Ce def: "The time period encompassing the 317th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "317 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000815 ! C. elegans life stage occurring during enclosing embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000013 ! enclosing embryo Ce -relationship: starts_at_end_of WBls:0000427 ! 316 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000013 ! enclosing embryo Ce +relationship: RO:0002087 WBls:0000427 ! 316 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4554,9 +5283,11 @@ id: WBls:0000429 name: 318 min post first-cleavage Ce def: "The time period encompassing the 318th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "318 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000815 ! C. elegans life stage occurring during enclosing embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000013 ! enclosing embryo Ce -relationship: starts_at_end_of WBls:0000428 ! 317 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000013 ! enclosing embryo Ce +relationship: RO:0002087 WBls:0000428 ! 317 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4565,9 +5296,11 @@ id: WBls:0000430 name: 319 min post first-cleavage Ce def: "The time period encompassing the 319th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "319 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000815 ! C. elegans life stage occurring during enclosing embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000013 ! enclosing embryo Ce -relationship: starts_at_end_of WBls:0000429 ! 318 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000013 ! enclosing embryo Ce +relationship: RO:0002087 WBls:0000429 ! 318 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4576,9 +5309,11 @@ id: WBls:0000431 name: 320 min post first-cleavage Ce def: "The time period encompassing the 320th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "320 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000815 ! C. elegans life stage occurring during enclosing embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000013 ! enclosing embryo Ce -relationship: starts_at_end_of WBls:0000430 ! 319 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000013 ! enclosing embryo Ce +relationship: RO:0002087 WBls:0000430 ! 319 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4587,9 +5322,11 @@ id: WBls:0000432 name: 321 min post first-cleavage Ce def: "The time period encompassing the 321st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "321 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000815 ! C. elegans life stage occurring during enclosing embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000013 ! enclosing embryo Ce -relationship: starts_at_end_of WBls:0000431 ! 320 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000013 ! enclosing embryo Ce +relationship: RO:0002087 WBls:0000431 ! 320 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4598,9 +5335,11 @@ id: WBls:0000433 name: 322 min post first-cleavage Ce def: "The time period encompassing the 322nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "322 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000815 ! C. elegans life stage occurring during enclosing embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000013 ! enclosing embryo Ce -relationship: starts_at_end_of WBls:0000432 ! 321 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000013 ! enclosing embryo Ce +relationship: RO:0002087 WBls:0000432 ! 321 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4609,9 +5348,11 @@ id: WBls:0000434 name: 323 min post first-cleavage Ce def: "The time period encompassing the 323rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "323 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000815 ! C. elegans life stage occurring during enclosing embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000013 ! enclosing embryo Ce -relationship: starts_at_end_of WBls:0000433 ! 322 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000013 ! enclosing embryo Ce +relationship: RO:0002087 WBls:0000433 ! 322 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4620,9 +5361,11 @@ id: WBls:0000435 name: 324 min post first-cleavage Ce def: "The time period encompassing the 324th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "324 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000815 ! C. elegans life stage occurring during enclosing embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000013 ! enclosing embryo Ce -relationship: starts_at_end_of WBls:0000434 ! 323 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000013 ! enclosing embryo Ce +relationship: RO:0002087 WBls:0000434 ! 323 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4631,9 +5374,11 @@ id: WBls:0000436 name: 325 min post first-cleavage Ce def: "The time period encompassing the 325th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "325 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000815 ! C. elegans life stage occurring during enclosing embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000013 ! enclosing embryo Ce -relationship: starts_at_end_of WBls:0000435 ! 324 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000013 ! enclosing embryo Ce +relationship: RO:0002087 WBls:0000435 ! 324 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4642,9 +5387,11 @@ id: WBls:0000437 name: 326 min post first-cleavage Ce def: "The time period encompassing the 326th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "326 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000815 ! C. elegans life stage occurring during enclosing embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000013 ! enclosing embryo Ce -relationship: starts_at_end_of WBls:0000436 ! 325 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000013 ! enclosing embryo Ce +relationship: RO:0002087 WBls:0000436 ! 325 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4653,9 +5400,11 @@ id: WBls:0000438 name: 327 min post first-cleavage Ce def: "The time period encompassing the 327th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "327 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000815 ! C. elegans life stage occurring during enclosing embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000013 ! enclosing embryo Ce -relationship: starts_at_end_of WBls:0000437 ! 326 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000013 ! enclosing embryo Ce +relationship: RO:0002087 WBls:0000437 ! 326 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4664,9 +5413,11 @@ id: WBls:0000439 name: 328 min post first-cleavage Ce def: "The time period encompassing the 328th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "328 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000815 ! C. elegans life stage occurring during enclosing embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000013 ! enclosing embryo Ce -relationship: starts_at_end_of WBls:0000438 ! 327 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000013 ! enclosing embryo Ce +relationship: RO:0002087 WBls:0000438 ! 327 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4675,9 +5426,11 @@ id: WBls:0000440 name: 329 min post first-cleavage Ce def: "The time period encompassing the 329th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "329 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000815 ! C. elegans life stage occurring during enclosing embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000013 ! enclosing embryo Ce -relationship: starts_at_end_of WBls:0000439 ! 328 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000013 ! enclosing embryo Ce +relationship: RO:0002087 WBls:0000439 ! 328 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4686,9 +5439,11 @@ id: WBls:0000441 name: 330 min post first-cleavage Ce def: "The time period encompassing the 330th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "330 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000815 ! C. elegans life stage occurring during enclosing embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000013 ! enclosing embryo Ce -relationship: starts_at_end_of WBls:0000440 ! 329 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000013 ! enclosing embryo Ce +relationship: RO:0002087 WBls:0000440 ! 329 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4697,9 +5452,11 @@ id: WBls:0000442 name: 331 min post first-cleavage Ce def: "The time period encompassing the 331st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "331 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000815 ! C. elegans life stage occurring during enclosing embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000013 ! enclosing embryo Ce -relationship: starts_at_end_of WBls:0000441 ! 330 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000013 ! enclosing embryo Ce +relationship: RO:0002087 WBls:0000441 ! 330 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4708,9 +5465,11 @@ id: WBls:0000443 name: 332 min post first-cleavage Ce def: "The time period encompassing the 332nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "332 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000815 ! C. elegans life stage occurring during enclosing embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000013 ! enclosing embryo Ce -relationship: starts_at_end_of WBls:0000442 ! 331 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000013 ! enclosing embryo Ce +relationship: RO:0002087 WBls:0000442 ! 331 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4719,9 +5478,11 @@ id: WBls:0000444 name: 333 min post first-cleavage Ce def: "The time period encompassing the 333rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "333 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000815 ! C. elegans life stage occurring during enclosing embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000013 ! enclosing embryo Ce -relationship: starts_at_end_of WBls:0000443 ! 332 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000013 ! enclosing embryo Ce +relationship: RO:0002087 WBls:0000443 ! 332 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4730,9 +5491,11 @@ id: WBls:0000445 name: 334 min post first-cleavage Ce def: "The time period encompassing the 334th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "334 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000815 ! C. elegans life stage occurring during enclosing embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000013 ! enclosing embryo Ce -relationship: starts_at_end_of WBls:0000444 ! 333 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000013 ! enclosing embryo Ce +relationship: RO:0002087 WBls:0000444 ! 333 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4741,9 +5504,11 @@ id: WBls:0000446 name: 335 min post first-cleavage Ce def: "The time period encompassing the 335th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "335 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000815 ! C. elegans life stage occurring during enclosing embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000013 ! enclosing embryo Ce -relationship: starts_at_end_of WBls:0000445 ! 334 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000013 ! enclosing embryo Ce +relationship: RO:0002087 WBls:0000445 ! 334 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4752,9 +5517,11 @@ id: WBls:0000447 name: 336 min post first-cleavage Ce def: "The time period encompassing the 336th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "336 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000815 ! C. elegans life stage occurring during enclosing embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000013 ! enclosing embryo Ce -relationship: starts_at_end_of WBls:0000446 ! 335 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000013 ! enclosing embryo Ce +relationship: RO:0002087 WBls:0000446 ! 335 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4763,9 +5530,11 @@ id: WBls:0000448 name: 337 min post first-cleavage Ce def: "The time period encompassing the 337th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "337 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000815 ! C. elegans life stage occurring during enclosing embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000013 ! enclosing embryo Ce -relationship: starts_at_end_of WBls:0000447 ! 336 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000013 ! enclosing embryo Ce +relationship: RO:0002087 WBls:0000447 ! 336 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4774,9 +5543,11 @@ id: WBls:0000449 name: 338 min post first-cleavage Ce def: "The time period encompassing the 338th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "338 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000815 ! C. elegans life stage occurring during enclosing embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000013 ! enclosing embryo Ce -relationship: starts_at_end_of WBls:0000448 ! 337 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000013 ! enclosing embryo Ce +relationship: RO:0002087 WBls:0000448 ! 337 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4785,9 +5556,11 @@ id: WBls:0000450 name: 339 min post first-cleavage Ce def: "The time period encompassing the 339th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "339 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000815 ! C. elegans life stage occurring during enclosing embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000013 ! enclosing embryo Ce -relationship: starts_at_end_of WBls:0000449 ! 338 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000013 ! enclosing embryo Ce +relationship: RO:0002087 WBls:0000449 ! 338 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4796,9 +5569,11 @@ id: WBls:0000451 name: 340 min post first-cleavage Ce def: "The time period encompassing the 340th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "340 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000815 ! C. elegans life stage occurring during enclosing embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000013 ! enclosing embryo Ce -relationship: starts_at_end_of WBls:0000450 ! 339 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000013 ! enclosing embryo Ce +relationship: RO:0002087 WBls:0000450 ! 339 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4807,9 +5582,11 @@ id: WBls:0000452 name: 341 min post first-cleavage Ce def: "The time period encompassing the 341st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "341 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000815 ! C. elegans life stage occurring during enclosing embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000013 ! enclosing embryo Ce -relationship: starts_at_end_of WBls:0000451 ! 340 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000013 ! enclosing embryo Ce +relationship: RO:0002087 WBls:0000451 ! 340 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4818,9 +5595,11 @@ id: WBls:0000453 name: 342 min post first-cleavage Ce def: "The time period encompassing the 342nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "342 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000815 ! C. elegans life stage occurring during enclosing embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000013 ! enclosing embryo Ce -relationship: starts_at_end_of WBls:0000452 ! 341 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000013 ! enclosing embryo Ce +relationship: RO:0002087 WBls:0000452 ! 341 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4829,9 +5608,11 @@ id: WBls:0000454 name: 343 min post first-cleavage Ce def: "The time period encompassing the 343rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "343 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000815 ! C. elegans life stage occurring during enclosing embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000013 ! enclosing embryo Ce -relationship: starts_at_end_of WBls:0000453 ! 342 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000013 ! enclosing embryo Ce +relationship: RO:0002087 WBls:0000453 ! 342 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4840,9 +5621,11 @@ id: WBls:0000455 name: 344 min post first-cleavage Ce def: "The time period encompassing the 344th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "344 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000815 ! C. elegans life stage occurring during enclosing embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000013 ! enclosing embryo Ce -relationship: starts_at_end_of WBls:0000454 ! 343 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000013 ! enclosing embryo Ce +relationship: RO:0002087 WBls:0000454 ! 343 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4851,9 +5634,11 @@ id: WBls:0000456 name: 345 min post first-cleavage Ce def: "The time period encompassing the 345th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "345 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000815 ! C. elegans life stage occurring during enclosing embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000013 ! enclosing embryo Ce -relationship: starts_at_end_of WBls:0000455 ! 344 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000013 ! enclosing embryo Ce +relationship: RO:0002087 WBls:0000455 ! 344 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4862,9 +5647,11 @@ id: WBls:0000457 name: 346 min post first-cleavage Ce def: "The time period encompassing the 346th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "346 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000815 ! C. elegans life stage occurring during enclosing embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000013 ! enclosing embryo Ce -relationship: starts_at_end_of WBls:0000456 ! 345 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000013 ! enclosing embryo Ce +relationship: RO:0002087 WBls:0000456 ! 345 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4873,9 +5660,11 @@ id: WBls:0000458 name: 347 min post first-cleavage Ce def: "The time period encompassing the 347th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "347 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000815 ! C. elegans life stage occurring during enclosing embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000013 ! enclosing embryo Ce -relationship: starts_at_end_of WBls:0000457 ! 346 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000013 ! enclosing embryo Ce +relationship: RO:0002087 WBls:0000457 ! 346 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4884,9 +5673,11 @@ id: WBls:0000459 name: 348 min post first-cleavage Ce def: "The time period encompassing the 348th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "348 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000815 ! C. elegans life stage occurring during enclosing embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000013 ! enclosing embryo Ce -relationship: starts_at_end_of WBls:0000458 ! 347 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000013 ! enclosing embryo Ce +relationship: RO:0002087 WBls:0000458 ! 347 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4895,9 +5686,11 @@ id: WBls:0000460 name: 349 min post first-cleavage Ce def: "The time period encompassing the 349th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "349 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000815 ! C. elegans life stage occurring during enclosing embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000013 ! enclosing embryo Ce -relationship: starts_at_end_of WBls:0000459 ! 348 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000013 ! enclosing embryo Ce +relationship: RO:0002087 WBls:0000459 ! 348 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4906,9 +5699,11 @@ id: WBls:0000461 name: 350 min post first-cleavage Ce def: "The time period encompassing the 350th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "350 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000815 ! C. elegans life stage occurring during enclosing embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000013 ! enclosing embryo Ce -relationship: starts_at_end_of WBls:0000460 ! 349 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000013 ! enclosing embryo Ce +relationship: RO:0002087 WBls:0000460 ! 349 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4917,9 +5712,11 @@ id: WBls:0000462 name: 351 min post first-cleavage Ce def: "The time period encompassing the 351st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "351 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000809 ! C. elegans life stage occurring during bean embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000016 ! bean embryo Ce -relationship: starts_at_end_of WBls:0000461 ! 350 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000016 ! bean embryo Ce +relationship: RO:0002087 WBls:0000461 ! 350 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4928,9 +5725,11 @@ id: WBls:0000463 name: 352 min post first-cleavage Ce def: "The time period encompassing the 352nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "352 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000809 ! C. elegans life stage occurring during bean embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000016 ! bean embryo Ce -relationship: starts_at_end_of WBls:0000462 ! 351 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000016 ! bean embryo Ce +relationship: RO:0002087 WBls:0000462 ! 351 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4939,9 +5738,11 @@ id: WBls:0000464 name: 353 min post first-cleavage Ce def: "The time period encompassing the 353rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "353 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000809 ! C. elegans life stage occurring during bean embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000016 ! bean embryo Ce -relationship: starts_at_end_of WBls:0000463 ! 352 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000016 ! bean embryo Ce +relationship: RO:0002087 WBls:0000463 ! 352 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4950,9 +5751,11 @@ id: WBls:0000465 name: 354 min post first-cleavage Ce def: "The time period encompassing the 354th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "354 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000809 ! C. elegans life stage occurring during bean embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000016 ! bean embryo Ce -relationship: starts_at_end_of WBls:0000464 ! 353 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000016 ! bean embryo Ce +relationship: RO:0002087 WBls:0000464 ! 353 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4961,9 +5764,11 @@ id: WBls:0000466 name: 355 min post first-cleavage Ce def: "The time period encompassing the 355th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "355 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000809 ! C. elegans life stage occurring during bean embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000016 ! bean embryo Ce -relationship: starts_at_end_of WBls:0000465 ! 354 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000016 ! bean embryo Ce +relationship: RO:0002087 WBls:0000465 ! 354 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4972,9 +5777,11 @@ id: WBls:0000467 name: 356 min post first-cleavage Ce def: "The time period encompassing the 356th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "356 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000809 ! C. elegans life stage occurring during bean embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000016 ! bean embryo Ce -relationship: starts_at_end_of WBls:0000466 ! 355 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000016 ! bean embryo Ce +relationship: RO:0002087 WBls:0000466 ! 355 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4983,9 +5790,11 @@ id: WBls:0000468 name: 357 min post first-cleavage Ce def: "The time period encompassing the 357th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "357 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000809 ! C. elegans life stage occurring during bean embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000016 ! bean embryo Ce -relationship: starts_at_end_of WBls:0000467 ! 356 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000016 ! bean embryo Ce +relationship: RO:0002087 WBls:0000467 ! 356 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -4994,9 +5803,11 @@ id: WBls:0000469 name: 358 min post first-cleavage Ce def: "The time period encompassing the 358th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "358 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000809 ! C. elegans life stage occurring during bean embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000016 ! bean embryo Ce -relationship: starts_at_end_of WBls:0000468 ! 357 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000016 ! bean embryo Ce +relationship: RO:0002087 WBls:0000468 ! 357 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5005,9 +5816,11 @@ id: WBls:0000470 name: 359 min post first-cleavage Ce def: "The time period encompassing the 359th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "359 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000809 ! C. elegans life stage occurring during bean embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000016 ! bean embryo Ce -relationship: starts_at_end_of WBls:0000469 ! 358 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000016 ! bean embryo Ce +relationship: RO:0002087 WBls:0000469 ! 358 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5016,9 +5829,11 @@ id: WBls:0000471 name: 360 min post first-cleavage Ce def: "The time period encompassing the 360th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "360 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000809 ! C. elegans life stage occurring during bean embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000016 ! bean embryo Ce -relationship: starts_at_end_of WBls:0000470 ! 359 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000016 ! bean embryo Ce +relationship: RO:0002087 WBls:0000470 ! 359 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5027,9 +5842,11 @@ id: WBls:0000472 name: 361 min post first-cleavage Ce def: "The time period encompassing the 361st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "361 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000809 ! C. elegans life stage occurring during bean embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000016 ! bean embryo Ce -relationship: starts_at_end_of WBls:0000471 ! 360 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000016 ! bean embryo Ce +relationship: RO:0002087 WBls:0000471 ! 360 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5038,9 +5855,11 @@ id: WBls:0000473 name: 362 min post first-cleavage Ce def: "The time period encompassing the 362nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "362 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000809 ! C. elegans life stage occurring during bean embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000016 ! bean embryo Ce -relationship: starts_at_end_of WBls:0000472 ! 361 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000016 ! bean embryo Ce +relationship: RO:0002087 WBls:0000472 ! 361 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5049,9 +5868,11 @@ id: WBls:0000474 name: 363 min post first-cleavage Ce def: "The time period encompassing the 363rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "363 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000809 ! C. elegans life stage occurring during bean embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000016 ! bean embryo Ce -relationship: starts_at_end_of WBls:0000473 ! 362 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000016 ! bean embryo Ce +relationship: RO:0002087 WBls:0000473 ! 362 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5060,9 +5881,11 @@ id: WBls:0000475 name: 364 min post first-cleavage Ce def: "The time period encompassing the 364th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "364 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000809 ! C. elegans life stage occurring during bean embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000016 ! bean embryo Ce -relationship: starts_at_end_of WBls:0000474 ! 363 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000016 ! bean embryo Ce +relationship: RO:0002087 WBls:0000474 ! 363 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5071,9 +5894,11 @@ id: WBls:0000476 name: 365 min post first-cleavage Ce def: "The time period encompassing the 365th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "365 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000809 ! C. elegans life stage occurring during bean embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000016 ! bean embryo Ce -relationship: starts_at_end_of WBls:0000475 ! 364 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000016 ! bean embryo Ce +relationship: RO:0002087 WBls:0000475 ! 364 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5082,9 +5907,11 @@ id: WBls:0000477 name: 366 min post first-cleavage Ce def: "The time period encompassing the 366th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "366 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000809 ! C. elegans life stage occurring during bean embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000016 ! bean embryo Ce -relationship: starts_at_end_of WBls:0000476 ! 365 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000016 ! bean embryo Ce +relationship: RO:0002087 WBls:0000476 ! 365 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5093,9 +5920,11 @@ id: WBls:0000478 name: 367 min post first-cleavage Ce def: "The time period encompassing the 367th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "367 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000809 ! C. elegans life stage occurring during bean embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000016 ! bean embryo Ce -relationship: starts_at_end_of WBls:0000477 ! 366 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000016 ! bean embryo Ce +relationship: RO:0002087 WBls:0000477 ! 366 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5104,9 +5933,11 @@ id: WBls:0000479 name: 368 min post first-cleavage Ce def: "The time period encompassing the 368th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "368 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000809 ! C. elegans life stage occurring during bean embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000016 ! bean embryo Ce -relationship: starts_at_end_of WBls:0000478 ! 367 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000016 ! bean embryo Ce +relationship: RO:0002087 WBls:0000478 ! 367 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5115,9 +5946,11 @@ id: WBls:0000480 name: 369 min post first-cleavage Ce def: "The time period encompassing the 369th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "369 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000809 ! C. elegans life stage occurring during bean embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000016 ! bean embryo Ce -relationship: starts_at_end_of WBls:0000479 ! 368 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000016 ! bean embryo Ce +relationship: RO:0002087 WBls:0000479 ! 368 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5126,9 +5959,11 @@ id: WBls:0000481 name: 370 min post first-cleavage Ce def: "The time period encompassing the 370th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "370 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000809 ! C. elegans life stage occurring during bean embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000016 ! bean embryo Ce -relationship: starts_at_end_of WBls:0000480 ! 369 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000016 ! bean embryo Ce +relationship: RO:0002087 WBls:0000480 ! 369 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5137,9 +5972,11 @@ id: WBls:0000482 name: 371 min post first-cleavage Ce def: "The time period encompassing the 371st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "371 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000809 ! C. elegans life stage occurring during bean embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000016 ! bean embryo Ce -relationship: starts_at_end_of WBls:0000481 ! 370 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000016 ! bean embryo Ce +relationship: RO:0002087 WBls:0000481 ! 370 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5148,9 +5985,11 @@ id: WBls:0000483 name: 372 min post first-cleavage Ce def: "The time period encompassing the 372nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "372 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000809 ! C. elegans life stage occurring during bean embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000016 ! bean embryo Ce -relationship: starts_at_end_of WBls:0000482 ! 371 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000016 ! bean embryo Ce +relationship: RO:0002087 WBls:0000482 ! 371 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5159,9 +5998,11 @@ id: WBls:0000484 name: 373 min post first-cleavage Ce def: "The time period encompassing the 373rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "373 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000809 ! C. elegans life stage occurring during bean embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000016 ! bean embryo Ce -relationship: starts_at_end_of WBls:0000483 ! 372 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000016 ! bean embryo Ce +relationship: RO:0002087 WBls:0000483 ! 372 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5170,9 +6011,11 @@ id: WBls:0000485 name: 374 min post first-cleavage Ce def: "The time period encompassing the 374th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "374 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000809 ! C. elegans life stage occurring during bean embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000016 ! bean embryo Ce -relationship: starts_at_end_of WBls:0000484 ! 373 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000016 ! bean embryo Ce +relationship: RO:0002087 WBls:0000484 ! 373 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5181,9 +6024,11 @@ id: WBls:0000486 name: 375 min post first-cleavage Ce def: "The time period encompassing the 375th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "375 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000809 ! C. elegans life stage occurring during bean embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000016 ! bean embryo Ce -relationship: starts_at_end_of WBls:0000485 ! 374 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000016 ! bean embryo Ce +relationship: RO:0002087 WBls:0000485 ! 374 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5192,9 +6037,11 @@ id: WBls:0000487 name: 376 min post first-cleavage Ce def: "The time period encompassing the 376th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "376 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000809 ! C. elegans life stage occurring during bean embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000016 ! bean embryo Ce -relationship: starts_at_end_of WBls:0000486 ! 375 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000016 ! bean embryo Ce +relationship: RO:0002087 WBls:0000486 ! 375 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5203,9 +6050,11 @@ id: WBls:0000488 name: 377 min post first-cleavage Ce def: "The time period encompassing the 377th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "377 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000809 ! C. elegans life stage occurring during bean embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000016 ! bean embryo Ce -relationship: starts_at_end_of WBls:0000487 ! 376 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000016 ! bean embryo Ce +relationship: RO:0002087 WBls:0000487 ! 376 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5214,9 +6063,11 @@ id: WBls:0000489 name: 378 min post first-cleavage Ce def: "The time period encompassing the 378th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "378 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000809 ! C. elegans life stage occurring during bean embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000016 ! bean embryo Ce -relationship: starts_at_end_of WBls:0000488 ! 377 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000016 ! bean embryo Ce +relationship: RO:0002087 WBls:0000488 ! 377 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5225,9 +6076,11 @@ id: WBls:0000490 name: 379 min post first-cleavage Ce def: "The time period encompassing the 379th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "379 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000809 ! C. elegans life stage occurring during bean embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000016 ! bean embryo Ce -relationship: starts_at_end_of WBls:0000489 ! 378 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000016 ! bean embryo Ce +relationship: RO:0002087 WBls:0000489 ! 378 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5236,9 +6089,11 @@ id: WBls:0000491 name: 380 min post first-cleavage Ce def: "The time period encompassing the 380th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "380 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000809 ! C. elegans life stage occurring during bean embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000016 ! bean embryo Ce -relationship: starts_at_end_of WBls:0000490 ! 379 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000016 ! bean embryo Ce +relationship: RO:0002087 WBls:0000490 ! 379 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5247,9 +6102,11 @@ id: WBls:0000492 name: 381 min post first-cleavage Ce def: "The time period encompassing the 381st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "381 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000809 ! C. elegans life stage occurring during bean embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000016 ! bean embryo Ce -relationship: starts_at_end_of WBls:0000491 ! 380 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000016 ! bean embryo Ce +relationship: RO:0002087 WBls:0000491 ! 380 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5258,9 +6115,11 @@ id: WBls:0000493 name: 382 min post first-cleavage Ce def: "The time period encompassing the 382nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "382 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000809 ! C. elegans life stage occurring during bean embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000016 ! bean embryo Ce -relationship: starts_at_end_of WBls:0000492 ! 381 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000016 ! bean embryo Ce +relationship: RO:0002087 WBls:0000492 ! 381 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5269,9 +6128,11 @@ id: WBls:0000494 name: 383 min post first-cleavage Ce def: "The time period encompassing the 383rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "383 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000809 ! C. elegans life stage occurring during bean embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000016 ! bean embryo Ce -relationship: starts_at_end_of WBls:0000493 ! 382 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000016 ! bean embryo Ce +relationship: RO:0002087 WBls:0000493 ! 382 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5280,9 +6141,11 @@ id: WBls:0000495 name: 384 min post first-cleavage Ce def: "The time period encompassing the 384th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "384 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000809 ! C. elegans life stage occurring during bean embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000016 ! bean embryo Ce -relationship: starts_at_end_of WBls:0000494 ! 383 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000016 ! bean embryo Ce +relationship: RO:0002087 WBls:0000494 ! 383 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5291,9 +6154,11 @@ id: WBls:0000496 name: 385 min post first-cleavage Ce def: "The time period encompassing the 385th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "385 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000809 ! C. elegans life stage occurring during bean embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000016 ! bean embryo Ce -relationship: starts_at_end_of WBls:0000495 ! 384 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000016 ! bean embryo Ce +relationship: RO:0002087 WBls:0000495 ! 384 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5302,9 +6167,11 @@ id: WBls:0000497 name: 386 min post first-cleavage Ce def: "The time period encompassing the 386th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "386 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000809 ! C. elegans life stage occurring during bean embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000016 ! bean embryo Ce -relationship: starts_at_end_of WBls:0000496 ! 385 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000016 ! bean embryo Ce +relationship: RO:0002087 WBls:0000496 ! 385 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5313,9 +6180,11 @@ id: WBls:0000498 name: 387 min post first-cleavage Ce def: "The time period encompassing the 387th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "387 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000809 ! C. elegans life stage occurring during bean embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000016 ! bean embryo Ce -relationship: starts_at_end_of WBls:0000497 ! 386 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000016 ! bean embryo Ce +relationship: RO:0002087 WBls:0000497 ! 386 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5324,9 +6193,11 @@ id: WBls:0000499 name: 388 min post first-cleavage Ce def: "The time period encompassing the 388th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "388 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000809 ! C. elegans life stage occurring during bean embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000016 ! bean embryo Ce -relationship: starts_at_end_of WBls:0000498 ! 387 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000016 ! bean embryo Ce +relationship: RO:0002087 WBls:0000498 ! 387 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5335,9 +6206,11 @@ id: WBls:0000500 name: 389 min post first-cleavage Ce def: "The time period encompassing the 389th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "389 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000809 ! C. elegans life stage occurring during bean embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000016 ! bean embryo Ce -relationship: starts_at_end_of WBls:0000499 ! 388 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000016 ! bean embryo Ce +relationship: RO:0002087 WBls:0000499 ! 388 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5346,9 +6219,11 @@ id: WBls:0000501 name: 390 min post first-cleavage Ce def: "The time period encompassing the 390th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "390 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000809 ! C. elegans life stage occurring during bean embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000016 ! bean embryo Ce -relationship: starts_at_end_of WBls:0000500 ! 389 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000016 ! bean embryo Ce +relationship: RO:0002087 WBls:0000500 ! 389 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5357,9 +6232,11 @@ id: WBls:0000502 name: 391 min post first-cleavage Ce def: "The time period encompassing the 391st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "391 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000810 ! C. elegans life stage occurring during comma embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000017 ! comma embryo Ce -relationship: starts_at_end_of WBls:0000501 ! 390 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000017 ! comma embryo Ce +relationship: RO:0002087 WBls:0000501 ! 390 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5368,9 +6245,11 @@ id: WBls:0000503 name: 392 min post first-cleavage Ce def: "The time period encompassing the 392nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "392 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000810 ! C. elegans life stage occurring during comma embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000017 ! comma embryo Ce -relationship: starts_at_end_of WBls:0000502 ! 391 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000017 ! comma embryo Ce +relationship: RO:0002087 WBls:0000502 ! 391 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5379,9 +6258,11 @@ id: WBls:0000504 name: 393 min post first-cleavage Ce def: "The time period encompassing the 393rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "393 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000810 ! C. elegans life stage occurring during comma embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000017 ! comma embryo Ce -relationship: starts_at_end_of WBls:0000503 ! 392 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000017 ! comma embryo Ce +relationship: RO:0002087 WBls:0000503 ! 392 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5390,9 +6271,11 @@ id: WBls:0000505 name: 394 min post first-cleavage Ce def: "The time period encompassing the 394th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "394 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000810 ! C. elegans life stage occurring during comma embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000017 ! comma embryo Ce -relationship: starts_at_end_of WBls:0000504 ! 393 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000017 ! comma embryo Ce +relationship: RO:0002087 WBls:0000504 ! 393 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5401,9 +6284,11 @@ id: WBls:0000506 name: 395 min post first-cleavage Ce def: "The time period encompassing the 395th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "395 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000810 ! C. elegans life stage occurring during comma embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000017 ! comma embryo Ce -relationship: starts_at_end_of WBls:0000505 ! 394 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000017 ! comma embryo Ce +relationship: RO:0002087 WBls:0000505 ! 394 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5412,9 +6297,11 @@ id: WBls:0000507 name: 396 min post first-cleavage Ce def: "The time period encompassing the 396th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "396 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000810 ! C. elegans life stage occurring during comma embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000017 ! comma embryo Ce -relationship: starts_at_end_of WBls:0000506 ! 395 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000017 ! comma embryo Ce +relationship: RO:0002087 WBls:0000506 ! 395 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5423,9 +6310,11 @@ id: WBls:0000508 name: 397 min post first-cleavage Ce def: "The time period encompassing the 397th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "397 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000810 ! C. elegans life stage occurring during comma embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000017 ! comma embryo Ce -relationship: starts_at_end_of WBls:0000507 ! 396 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000017 ! comma embryo Ce +relationship: RO:0002087 WBls:0000507 ! 396 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5434,9 +6323,11 @@ id: WBls:0000509 name: 398 min post first-cleavage Ce def: "The time period encompassing the 398th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "398 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000810 ! C. elegans life stage occurring during comma embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000017 ! comma embryo Ce -relationship: starts_at_end_of WBls:0000508 ! 397 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000017 ! comma embryo Ce +relationship: RO:0002087 WBls:0000508 ! 397 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5445,9 +6336,11 @@ id: WBls:0000510 name: 399 min post first-cleavage Ce def: "The time period encompassing the 399th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "399 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000810 ! C. elegans life stage occurring during comma embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000017 ! comma embryo Ce -relationship: starts_at_end_of WBls:0000509 ! 398 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000017 ! comma embryo Ce +relationship: RO:0002087 WBls:0000509 ! 398 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5456,9 +6349,11 @@ id: WBls:0000511 name: 400 min post first-cleavage Ce def: "The time period encompassing the 400th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "400 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000810 ! C. elegans life stage occurring during comma embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000017 ! comma embryo Ce -relationship: starts_at_end_of WBls:0000510 ! 399 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000017 ! comma embryo Ce +relationship: RO:0002087 WBls:0000510 ! 399 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5467,9 +6362,11 @@ id: WBls:0000512 name: 401 min post first-cleavage Ce def: "The time period encompassing the 401st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "401 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000810 ! C. elegans life stage occurring during comma embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000017 ! comma embryo Ce -relationship: starts_at_end_of WBls:0000511 ! 400 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000017 ! comma embryo Ce +relationship: RO:0002087 WBls:0000511 ! 400 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5478,9 +6375,11 @@ id: WBls:0000513 name: 402 min post first-cleavage Ce def: "The time period encompassing the 402nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "402 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000810 ! C. elegans life stage occurring during comma embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000017 ! comma embryo Ce -relationship: starts_at_end_of WBls:0000512 ! 401 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000017 ! comma embryo Ce +relationship: RO:0002087 WBls:0000512 ! 401 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5489,9 +6388,11 @@ id: WBls:0000514 name: 403 min post first-cleavage Ce def: "The time period encompassing the 403rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "403 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000810 ! C. elegans life stage occurring during comma embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000017 ! comma embryo Ce -relationship: starts_at_end_of WBls:0000513 ! 402 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000017 ! comma embryo Ce +relationship: RO:0002087 WBls:0000513 ! 402 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5500,9 +6401,11 @@ id: WBls:0000515 name: 404 min post first-cleavage Ce def: "The time period encompassing the 404th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "404 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000810 ! C. elegans life stage occurring during comma embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000017 ! comma embryo Ce -relationship: starts_at_end_of WBls:0000514 ! 403 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000017 ! comma embryo Ce +relationship: RO:0002087 WBls:0000514 ! 403 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5511,9 +6414,11 @@ id: WBls:0000516 name: 405 min post first-cleavage Ce def: "The time period encompassing the 405th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "405 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000810 ! C. elegans life stage occurring during comma embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000017 ! comma embryo Ce -relationship: starts_at_end_of WBls:0000515 ! 404 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000017 ! comma embryo Ce +relationship: RO:0002087 WBls:0000515 ! 404 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5522,9 +6427,11 @@ id: WBls:0000517 name: 406 min post first-cleavage Ce def: "The time period encompassing the 406th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "406 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000810 ! C. elegans life stage occurring during comma embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000017 ! comma embryo Ce -relationship: starts_at_end_of WBls:0000516 ! 405 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000017 ! comma embryo Ce +relationship: RO:0002087 WBls:0000516 ! 405 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5533,9 +6440,11 @@ id: WBls:0000518 name: 407 min post first-cleavage Ce def: "The time period encompassing the 407th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "407 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000810 ! C. elegans life stage occurring during comma embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000017 ! comma embryo Ce -relationship: starts_at_end_of WBls:0000517 ! 406 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000017 ! comma embryo Ce +relationship: RO:0002087 WBls:0000517 ! 406 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5544,9 +6453,11 @@ id: WBls:0000519 name: 408 min post first-cleavage Ce def: "The time period encompassing the 408th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "408 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000810 ! C. elegans life stage occurring during comma embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000017 ! comma embryo Ce -relationship: starts_at_end_of WBls:0000518 ! 407 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000017 ! comma embryo Ce +relationship: RO:0002087 WBls:0000518 ! 407 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5555,9 +6466,11 @@ id: WBls:0000520 name: 409 min post first-cleavage Ce def: "The time period encompassing the 409th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "409 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000810 ! C. elegans life stage occurring during comma embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000017 ! comma embryo Ce -relationship: starts_at_end_of WBls:0000519 ! 408 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000017 ! comma embryo Ce +relationship: RO:0002087 WBls:0000519 ! 408 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5566,9 +6479,11 @@ id: WBls:0000521 name: 410 min post first-cleavage Ce def: "The time period encompassing the 410th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "410 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000810 ! C. elegans life stage occurring during comma embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000017 ! comma embryo Ce -relationship: starts_at_end_of WBls:0000520 ! 409 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000017 ! comma embryo Ce +relationship: RO:0002087 WBls:0000520 ! 409 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5577,9 +6492,11 @@ id: WBls:0000522 name: 411 min post first-cleavage Ce def: "The time period encompassing the 411st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "411 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000810 ! C. elegans life stage occurring during comma embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000017 ! comma embryo Ce -relationship: starts_at_end_of WBls:0000521 ! 410 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000017 ! comma embryo Ce +relationship: RO:0002087 WBls:0000521 ! 410 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5588,9 +6505,11 @@ id: WBls:0000523 name: 412 min post first-cleavage Ce def: "The time period encompassing the 412nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "412 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000810 ! C. elegans life stage occurring during comma embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000017 ! comma embryo Ce -relationship: starts_at_end_of WBls:0000522 ! 411 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000017 ! comma embryo Ce +relationship: RO:0002087 WBls:0000522 ! 411 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5599,9 +6518,11 @@ id: WBls:0000524 name: 413 min post first-cleavage Ce def: "The time period encompassing the 413rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "413 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000810 ! C. elegans life stage occurring during comma embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000017 ! comma embryo Ce -relationship: starts_at_end_of WBls:0000523 ! 412 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000017 ! comma embryo Ce +relationship: RO:0002087 WBls:0000523 ! 412 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5610,9 +6531,11 @@ id: WBls:0000525 name: 414 min post first-cleavage Ce def: "The time period encompassing the 414th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "414 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000810 ! C. elegans life stage occurring during comma embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000017 ! comma embryo Ce -relationship: starts_at_end_of WBls:0000524 ! 413 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000017 ! comma embryo Ce +relationship: RO:0002087 WBls:0000524 ! 413 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5621,9 +6544,11 @@ id: WBls:0000526 name: 415 min post first-cleavage Ce def: "The time period encompassing the 415th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "415 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000810 ! C. elegans life stage occurring during comma embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000017 ! comma embryo Ce -relationship: starts_at_end_of WBls:0000525 ! 414 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000017 ! comma embryo Ce +relationship: RO:0002087 WBls:0000525 ! 414 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5632,9 +6557,11 @@ id: WBls:0000527 name: 416 min post first-cleavage Ce def: "The time period encompassing the 416th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "416 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000810 ! C. elegans life stage occurring during comma embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000017 ! comma embryo Ce -relationship: starts_at_end_of WBls:0000526 ! 415 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000017 ! comma embryo Ce +relationship: RO:0002087 WBls:0000526 ! 415 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5643,9 +6570,11 @@ id: WBls:0000528 name: 417 min post first-cleavage Ce def: "The time period encompassing the 417th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "417 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000810 ! C. elegans life stage occurring during comma embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000017 ! comma embryo Ce -relationship: starts_at_end_of WBls:0000527 ! 416 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000017 ! comma embryo Ce +relationship: RO:0002087 WBls:0000527 ! 416 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5654,9 +6583,11 @@ id: WBls:0000529 name: 418 min post first-cleavage Ce def: "The time period encompassing the 418th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "418 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000810 ! C. elegans life stage occurring during comma embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000017 ! comma embryo Ce -relationship: starts_at_end_of WBls:0000528 ! 417 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000017 ! comma embryo Ce +relationship: RO:0002087 WBls:0000528 ! 417 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5665,9 +6596,11 @@ id: WBls:0000530 name: 419 min post first-cleavage Ce def: "The time period encompassing the 419th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "419 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000810 ! C. elegans life stage occurring during comma embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000017 ! comma embryo Ce -relationship: starts_at_end_of WBls:0000529 ! 418 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000017 ! comma embryo Ce +relationship: RO:0002087 WBls:0000529 ! 418 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5676,9 +6609,11 @@ id: WBls:0000531 name: 420 min post first-cleavage Ce def: "The time period encompassing the 420th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "420 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000810 ! C. elegans life stage occurring during comma embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000017 ! comma embryo Ce -relationship: starts_at_end_of WBls:0000530 ! 419 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000017 ! comma embryo Ce +relationship: RO:0002087 WBls:0000530 ! 419 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5687,9 +6622,11 @@ id: WBls:0000532 name: 421 min post first-cleavage Ce def: "The time period encompassing the 421st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "421 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000806 ! C. elegans life stage occurring during 1.5-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000018 ! 1.5-fold embryo Ce -relationship: starts_at_end_of WBls:0000531 ! 420 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000018 ! 1.5-fold embryo Ce +relationship: RO:0002087 WBls:0000531 ! 420 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5698,9 +6635,11 @@ id: WBls:0000533 name: 422 min post first-cleavage Ce def: "The time period encompassing the 422nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "422 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000806 ! C. elegans life stage occurring during 1.5-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000018 ! 1.5-fold embryo Ce -relationship: starts_at_end_of WBls:0000532 ! 421 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000018 ! 1.5-fold embryo Ce +relationship: RO:0002087 WBls:0000532 ! 421 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5709,9 +6648,11 @@ id: WBls:0000534 name: 423 min post first-cleavage Ce def: "The time period encompassing the 423rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "423 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000806 ! C. elegans life stage occurring during 1.5-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000018 ! 1.5-fold embryo Ce -relationship: starts_at_end_of WBls:0000533 ! 422 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000018 ! 1.5-fold embryo Ce +relationship: RO:0002087 WBls:0000533 ! 422 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5720,9 +6661,11 @@ id: WBls:0000535 name: 424 min post first-cleavage Ce def: "The time period encompassing the 424th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "424 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000806 ! C. elegans life stage occurring during 1.5-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000018 ! 1.5-fold embryo Ce -relationship: starts_at_end_of WBls:0000534 ! 423 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000018 ! 1.5-fold embryo Ce +relationship: RO:0002087 WBls:0000534 ! 423 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5731,9 +6674,11 @@ id: WBls:0000536 name: 425 min post first-cleavage Ce def: "The time period encompassing the 425th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "425 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000806 ! C. elegans life stage occurring during 1.5-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000018 ! 1.5-fold embryo Ce -relationship: starts_at_end_of WBls:0000535 ! 424 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000018 ! 1.5-fold embryo Ce +relationship: RO:0002087 WBls:0000535 ! 424 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5742,9 +6687,11 @@ id: WBls:0000537 name: 426 min post first-cleavage Ce def: "The time period encompassing the 426th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "426 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000806 ! C. elegans life stage occurring during 1.5-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000018 ! 1.5-fold embryo Ce -relationship: starts_at_end_of WBls:0000536 ! 425 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000018 ! 1.5-fold embryo Ce +relationship: RO:0002087 WBls:0000536 ! 425 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5753,9 +6700,11 @@ id: WBls:0000538 name: 427 min post first-cleavage Ce def: "The time period encompassing the 427th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "427 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000806 ! C. elegans life stage occurring during 1.5-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000018 ! 1.5-fold embryo Ce -relationship: starts_at_end_of WBls:0000537 ! 426 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000018 ! 1.5-fold embryo Ce +relationship: RO:0002087 WBls:0000537 ! 426 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5764,9 +6713,11 @@ id: WBls:0000539 name: 428 min post first-cleavage Ce def: "The time period encompassing the 428th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "428 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000806 ! C. elegans life stage occurring during 1.5-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000018 ! 1.5-fold embryo Ce -relationship: starts_at_end_of WBls:0000538 ! 427 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000018 ! 1.5-fold embryo Ce +relationship: RO:0002087 WBls:0000538 ! 427 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5775,9 +6726,11 @@ id: WBls:0000540 name: 429 min post first-cleavage Ce def: "The time period encompassing the 429th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "429 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000806 ! C. elegans life stage occurring during 1.5-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000018 ! 1.5-fold embryo Ce -relationship: starts_at_end_of WBls:0000539 ! 428 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000018 ! 1.5-fold embryo Ce +relationship: RO:0002087 WBls:0000539 ! 428 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5786,9 +6739,11 @@ id: WBls:0000541 name: 430 min post first-cleavage Ce def: "The time period encompassing the 430th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "430 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000806 ! C. elegans life stage occurring during 1.5-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000018 ! 1.5-fold embryo Ce -relationship: starts_at_end_of WBls:0000540 ! 429 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000018 ! 1.5-fold embryo Ce +relationship: RO:0002087 WBls:0000540 ! 429 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5797,9 +6752,11 @@ id: WBls:0000542 name: 431 min post first-cleavage Ce def: "The time period encompassing the 431st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "431 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000806 ! C. elegans life stage occurring during 1.5-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000018 ! 1.5-fold embryo Ce -relationship: starts_at_end_of WBls:0000541 ! 430 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000018 ! 1.5-fold embryo Ce +relationship: RO:0002087 WBls:0000541 ! 430 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5808,9 +6765,11 @@ id: WBls:0000543 name: 432 min post first-cleavage Ce def: "The time period encompassing the 432nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "432 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000806 ! C. elegans life stage occurring during 1.5-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000018 ! 1.5-fold embryo Ce -relationship: starts_at_end_of WBls:0000542 ! 431 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000018 ! 1.5-fold embryo Ce +relationship: RO:0002087 WBls:0000542 ! 431 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5819,9 +6778,11 @@ id: WBls:0000544 name: 433 min post first-cleavage Ce def: "The time period encompassing the 433rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "433 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000806 ! C. elegans life stage occurring during 1.5-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000018 ! 1.5-fold embryo Ce -relationship: starts_at_end_of WBls:0000543 ! 432 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000018 ! 1.5-fold embryo Ce +relationship: RO:0002087 WBls:0000543 ! 432 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5830,9 +6791,11 @@ id: WBls:0000545 name: 434 min post first-cleavage Ce def: "The time period encompassing the 434th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "434 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000806 ! C. elegans life stage occurring during 1.5-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000018 ! 1.5-fold embryo Ce -relationship: starts_at_end_of WBls:0000544 ! 433 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000018 ! 1.5-fold embryo Ce +relationship: RO:0002087 WBls:0000544 ! 433 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5841,9 +6804,11 @@ id: WBls:0000546 name: 435 min post first-cleavage Ce def: "The time period encompassing the 435th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "435 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000806 ! C. elegans life stage occurring during 1.5-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000018 ! 1.5-fold embryo Ce -relationship: starts_at_end_of WBls:0000545 ! 434 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000018 ! 1.5-fold embryo Ce +relationship: RO:0002087 WBls:0000545 ! 434 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5852,9 +6817,11 @@ id: WBls:0000547 name: 436 min post first-cleavage Ce def: "The time period encompassing the 436th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "436 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000806 ! C. elegans life stage occurring during 1.5-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000018 ! 1.5-fold embryo Ce -relationship: starts_at_end_of WBls:0000546 ! 435 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000018 ! 1.5-fold embryo Ce +relationship: RO:0002087 WBls:0000546 ! 435 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5863,9 +6830,11 @@ id: WBls:0000548 name: 437 min post first-cleavage Ce def: "The time period encompassing the 437th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "437 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000806 ! C. elegans life stage occurring during 1.5-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000018 ! 1.5-fold embryo Ce -relationship: starts_at_end_of WBls:0000547 ! 436 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000018 ! 1.5-fold embryo Ce +relationship: RO:0002087 WBls:0000547 ! 436 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5874,9 +6843,11 @@ id: WBls:0000549 name: 438 min post first-cleavage Ce def: "The time period encompassing the 438th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "438 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000806 ! C. elegans life stage occurring during 1.5-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000018 ! 1.5-fold embryo Ce -relationship: starts_at_end_of WBls:0000548 ! 437 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000018 ! 1.5-fold embryo Ce +relationship: RO:0002087 WBls:0000548 ! 437 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5885,9 +6856,11 @@ id: WBls:0000550 name: 439 min post first-cleavage Ce def: "The time period encompassing the 439th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "439 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000806 ! C. elegans life stage occurring during 1.5-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000018 ! 1.5-fold embryo Ce -relationship: starts_at_end_of WBls:0000549 ! 438 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000018 ! 1.5-fold embryo Ce +relationship: RO:0002087 WBls:0000549 ! 438 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5896,9 +6869,11 @@ id: WBls:0000551 name: 440 min post first-cleavage Ce def: "The time period encompassing the 440th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "440 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000806 ! C. elegans life stage occurring during 1.5-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000018 ! 1.5-fold embryo Ce -relationship: starts_at_end_of WBls:0000550 ! 439 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000018 ! 1.5-fold embryo Ce +relationship: RO:0002087 WBls:0000550 ! 439 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5907,9 +6882,11 @@ id: WBls:0000552 name: 441 min post first-cleavage Ce def: "The time period encompassing the 441st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "441 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000806 ! C. elegans life stage occurring during 1.5-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000018 ! 1.5-fold embryo Ce -relationship: starts_at_end_of WBls:0000551 ! 440 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000018 ! 1.5-fold embryo Ce +relationship: RO:0002087 WBls:0000551 ! 440 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5918,9 +6895,11 @@ id: WBls:0000553 name: 442 min post first-cleavage Ce def: "The time period encompassing the 442nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "442 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000806 ! C. elegans life stage occurring during 1.5-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000018 ! 1.5-fold embryo Ce -relationship: starts_at_end_of WBls:0000552 ! 441 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000018 ! 1.5-fold embryo Ce +relationship: RO:0002087 WBls:0000552 ! 441 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5929,9 +6908,11 @@ id: WBls:0000554 name: 443 min post first-cleavage Ce def: "The time period encompassing the 443rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "443 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000806 ! C. elegans life stage occurring during 1.5-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000018 ! 1.5-fold embryo Ce -relationship: starts_at_end_of WBls:0000553 ! 442 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000018 ! 1.5-fold embryo Ce +relationship: RO:0002087 WBls:0000553 ! 442 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5940,9 +6921,11 @@ id: WBls:0000555 name: 444 min post first-cleavage Ce def: "The time period encompassing the 444th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "444 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000806 ! C. elegans life stage occurring during 1.5-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000018 ! 1.5-fold embryo Ce -relationship: starts_at_end_of WBls:0000554 ! 443 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000018 ! 1.5-fold embryo Ce +relationship: RO:0002087 WBls:0000554 ! 443 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5951,9 +6934,11 @@ id: WBls:0000556 name: 445 min post first-cleavage Ce def: "The time period encompassing the 445th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "445 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000806 ! C. elegans life stage occurring during 1.5-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000018 ! 1.5-fold embryo Ce -relationship: starts_at_end_of WBls:0000555 ! 444 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000018 ! 1.5-fold embryo Ce +relationship: RO:0002087 WBls:0000555 ! 444 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5962,9 +6947,11 @@ id: WBls:0000557 name: 446 min post first-cleavage Ce def: "The time period encompassing the 446th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "446 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000806 ! C. elegans life stage occurring during 1.5-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000018 ! 1.5-fold embryo Ce -relationship: starts_at_end_of WBls:0000556 ! 445 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000018 ! 1.5-fold embryo Ce +relationship: RO:0002087 WBls:0000556 ! 445 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5973,9 +6960,11 @@ id: WBls:0000558 name: 447 min post first-cleavage Ce def: "The time period encompassing the 447th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "447 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000806 ! C. elegans life stage occurring during 1.5-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000018 ! 1.5-fold embryo Ce -relationship: starts_at_end_of WBls:0000557 ! 446 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000018 ! 1.5-fold embryo Ce +relationship: RO:0002087 WBls:0000557 ! 446 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5984,9 +6973,11 @@ id: WBls:0000559 name: 448 min post first-cleavage Ce def: "The time period encompassing the 448th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "448 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000806 ! C. elegans life stage occurring during 1.5-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000018 ! 1.5-fold embryo Ce -relationship: starts_at_end_of WBls:0000558 ! 447 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000018 ! 1.5-fold embryo Ce +relationship: RO:0002087 WBls:0000558 ! 447 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -5995,9 +6986,11 @@ id: WBls:0000560 name: 449 min post first-cleavage Ce def: "The time period encompassing the 449th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "449 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000806 ! C. elegans life stage occurring during 1.5-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000018 ! 1.5-fold embryo Ce -relationship: starts_at_end_of WBls:0000559 ! 448 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000018 ! 1.5-fold embryo Ce +relationship: RO:0002087 WBls:0000559 ! 448 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6006,9 +6999,11 @@ id: WBls:0000561 name: 450 min post first-cleavage Ce def: "The time period encompassing the 450th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "450 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000806 ! C. elegans life stage occurring during 1.5-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000018 ! 1.5-fold embryo Ce -relationship: starts_at_end_of WBls:0000560 ! 449 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000018 ! 1.5-fold embryo Ce +relationship: RO:0002087 WBls:0000560 ! 449 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6017,9 +7012,11 @@ id: WBls:0000562 name: 451 min post first-cleavage Ce def: "The time period encompassing the 451st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "451 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000806 ! C. elegans life stage occurring during 1.5-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000018 ! 1.5-fold embryo Ce -relationship: starts_at_end_of WBls:0000561 ! 450 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000018 ! 1.5-fold embryo Ce +relationship: RO:0002087 WBls:0000561 ! 450 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6028,9 +7025,11 @@ id: WBls:0000563 name: 452 min post first-cleavage Ce def: "The time period encompassing the 452nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "452 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000806 ! C. elegans life stage occurring during 1.5-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000018 ! 1.5-fold embryo Ce -relationship: starts_at_end_of WBls:0000562 ! 451 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000018 ! 1.5-fold embryo Ce +relationship: RO:0002087 WBls:0000562 ! 451 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6039,9 +7038,11 @@ id: WBls:0000564 name: 453 min post first-cleavage Ce def: "The time period encompassing the 453rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "453 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000806 ! C. elegans life stage occurring during 1.5-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000018 ! 1.5-fold embryo Ce -relationship: starts_at_end_of WBls:0000563 ! 452 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000018 ! 1.5-fold embryo Ce +relationship: RO:0002087 WBls:0000563 ! 452 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6050,9 +7051,11 @@ id: WBls:0000565 name: 454 min post first-cleavage Ce def: "The time period encompassing the 454th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "454 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000806 ! C. elegans life stage occurring during 1.5-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000018 ! 1.5-fold embryo Ce -relationship: starts_at_end_of WBls:0000564 ! 453 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000018 ! 1.5-fold embryo Ce +relationship: RO:0002087 WBls:0000564 ! 453 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6061,9 +7064,11 @@ id: WBls:0000566 name: 455 min post first-cleavage Ce def: "The time period encompassing the 455th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "455 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000806 ! C. elegans life stage occurring during 1.5-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000018 ! 1.5-fold embryo Ce -relationship: starts_at_end_of WBls:0000565 ! 454 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000018 ! 1.5-fold embryo Ce +relationship: RO:0002087 WBls:0000565 ! 454 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6072,9 +7077,11 @@ id: WBls:0000567 name: 456 min post first-cleavage Ce def: "The time period encompassing the 456th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "456 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000806 ! C. elegans life stage occurring during 1.5-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000018 ! 1.5-fold embryo Ce -relationship: starts_at_end_of WBls:0000566 ! 455 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000018 ! 1.5-fold embryo Ce +relationship: RO:0002087 WBls:0000566 ! 455 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6083,9 +7090,11 @@ id: WBls:0000568 name: 457 min post first-cleavage Ce def: "The time period encompassing the 457th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "457 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000806 ! C. elegans life stage occurring during 1.5-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000018 ! 1.5-fold embryo Ce -relationship: starts_at_end_of WBls:0000567 ! 456 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000018 ! 1.5-fold embryo Ce +relationship: RO:0002087 WBls:0000567 ! 456 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6094,9 +7103,11 @@ id: WBls:0000569 name: 458 min post first-cleavage Ce def: "The time period encompassing the 458th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "458 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000806 ! C. elegans life stage occurring during 1.5-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000018 ! 1.5-fold embryo Ce -relationship: starts_at_end_of WBls:0000568 ! 457 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000018 ! 1.5-fold embryo Ce +relationship: RO:0002087 WBls:0000568 ! 457 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6105,9 +7116,11 @@ id: WBls:0000570 name: 459 min post first-cleavage Ce def: "The time period encompassing the 459th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "459 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000806 ! C. elegans life stage occurring during 1.5-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000018 ! 1.5-fold embryo Ce -relationship: starts_at_end_of WBls:0000569 ! 458 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000018 ! 1.5-fold embryo Ce +relationship: RO:0002087 WBls:0000569 ! 458 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6116,9 +7129,11 @@ id: WBls:0000571 name: 460 min post first-cleavage Ce def: "The time period encompassing the 460th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "460 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000806 ! C. elegans life stage occurring during 1.5-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000018 ! 1.5-fold embryo Ce -relationship: starts_at_end_of WBls:0000570 ! 459 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000018 ! 1.5-fold embryo Ce +relationship: RO:0002087 WBls:0000570 ! 459 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6127,9 +7142,11 @@ id: WBls:0000572 name: 461 min post first-cleavage Ce def: "The time period encompassing the 461st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "461 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000807 ! C. elegans life stage occurring during 2-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000019 ! 2-fold embryo Ce -relationship: starts_at_end_of WBls:0000571 ! 460 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000019 ! 2-fold embryo Ce +relationship: RO:0002087 WBls:0000571 ! 460 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6138,9 +7155,11 @@ id: WBls:0000573 name: 462 min post first-cleavage Ce def: "The time period encompassing the 462nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "462 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000807 ! C. elegans life stage occurring during 2-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000019 ! 2-fold embryo Ce -relationship: starts_at_end_of WBls:0000572 ! 461 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000019 ! 2-fold embryo Ce +relationship: RO:0002087 WBls:0000572 ! 461 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6149,9 +7168,11 @@ id: WBls:0000574 name: 463 min post first-cleavage Ce def: "The time period encompassing the 463rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "463 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000807 ! C. elegans life stage occurring during 2-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000019 ! 2-fold embryo Ce -relationship: starts_at_end_of WBls:0000573 ! 462 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000019 ! 2-fold embryo Ce +relationship: RO:0002087 WBls:0000573 ! 462 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6160,9 +7181,11 @@ id: WBls:0000575 name: 464 min post first-cleavage Ce def: "The time period encompassing the 464th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "464 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000807 ! C. elegans life stage occurring during 2-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000019 ! 2-fold embryo Ce -relationship: starts_at_end_of WBls:0000574 ! 463 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000019 ! 2-fold embryo Ce +relationship: RO:0002087 WBls:0000574 ! 463 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6171,9 +7194,11 @@ id: WBls:0000576 name: 465 min post first-cleavage Ce def: "The time period encompassing the 465th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "465 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000807 ! C. elegans life stage occurring during 2-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000019 ! 2-fold embryo Ce -relationship: starts_at_end_of WBls:0000575 ! 464 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000019 ! 2-fold embryo Ce +relationship: RO:0002087 WBls:0000575 ! 464 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6182,9 +7207,11 @@ id: WBls:0000577 name: 466 min post first-cleavage Ce def: "The time period encompassing the 466th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "466 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000807 ! C. elegans life stage occurring during 2-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000019 ! 2-fold embryo Ce -relationship: starts_at_end_of WBls:0000576 ! 465 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000019 ! 2-fold embryo Ce +relationship: RO:0002087 WBls:0000576 ! 465 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6193,9 +7220,11 @@ id: WBls:0000578 name: 467 min post first-cleavage Ce def: "The time period encompassing the 467th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "467 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000807 ! C. elegans life stage occurring during 2-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000019 ! 2-fold embryo Ce -relationship: starts_at_end_of WBls:0000577 ! 466 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000019 ! 2-fold embryo Ce +relationship: RO:0002087 WBls:0000577 ! 466 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6204,9 +7233,11 @@ id: WBls:0000579 name: 468 min post first-cleavage Ce def: "The time period encompassing the 468th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "468 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000807 ! C. elegans life stage occurring during 2-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000019 ! 2-fold embryo Ce -relationship: starts_at_end_of WBls:0000578 ! 467 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000019 ! 2-fold embryo Ce +relationship: RO:0002087 WBls:0000578 ! 467 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6215,9 +7246,11 @@ id: WBls:0000580 name: 469 min post first-cleavage Ce def: "The time period encompassing the 469th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "469 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000807 ! C. elegans life stage occurring during 2-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000019 ! 2-fold embryo Ce -relationship: starts_at_end_of WBls:0000579 ! 468 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000019 ! 2-fold embryo Ce +relationship: RO:0002087 WBls:0000579 ! 468 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6226,9 +7259,11 @@ id: WBls:0000581 name: 470 min post first-cleavage Ce def: "The time period encompassing the 470th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "470 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000807 ! C. elegans life stage occurring during 2-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000019 ! 2-fold embryo Ce -relationship: starts_at_end_of WBls:0000580 ! 469 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000019 ! 2-fold embryo Ce +relationship: RO:0002087 WBls:0000580 ! 469 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6237,9 +7272,11 @@ id: WBls:0000582 name: 471 min post first-cleavage Ce def: "The time period encompassing the 471st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "471 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000807 ! C. elegans life stage occurring during 2-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000019 ! 2-fold embryo Ce -relationship: starts_at_end_of WBls:0000581 ! 470 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000019 ! 2-fold embryo Ce +relationship: RO:0002087 WBls:0000581 ! 470 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6248,9 +7285,11 @@ id: WBls:0000583 name: 472 min post first-cleavage Ce def: "The time period encompassing the 472nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "472 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000807 ! C. elegans life stage occurring during 2-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000019 ! 2-fold embryo Ce -relationship: starts_at_end_of WBls:0000582 ! 471 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000019 ! 2-fold embryo Ce +relationship: RO:0002087 WBls:0000582 ! 471 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6259,9 +7298,11 @@ id: WBls:0000584 name: 473 min post first-cleavage Ce def: "The time period encompassing the 473rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "473 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000807 ! C. elegans life stage occurring during 2-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000019 ! 2-fold embryo Ce -relationship: starts_at_end_of WBls:0000583 ! 472 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000019 ! 2-fold embryo Ce +relationship: RO:0002087 WBls:0000583 ! 472 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6270,9 +7311,11 @@ id: WBls:0000585 name: 474 min post first-cleavage Ce def: "The time period encompassing the 474th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "474 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000807 ! C. elegans life stage occurring during 2-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000019 ! 2-fold embryo Ce -relationship: starts_at_end_of WBls:0000584 ! 473 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000019 ! 2-fold embryo Ce +relationship: RO:0002087 WBls:0000584 ! 473 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6281,9 +7324,11 @@ id: WBls:0000586 name: 475 min post first-cleavage Ce def: "The time period encompassing the 475th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "475 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000807 ! C. elegans life stage occurring during 2-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000019 ! 2-fold embryo Ce -relationship: starts_at_end_of WBls:0000585 ! 474 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000019 ! 2-fold embryo Ce +relationship: RO:0002087 WBls:0000585 ! 474 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6292,9 +7337,11 @@ id: WBls:0000587 name: 476 min post first-cleavage Ce def: "The time period encompassing the 476th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "476 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000807 ! C. elegans life stage occurring during 2-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000019 ! 2-fold embryo Ce -relationship: starts_at_end_of WBls:0000586 ! 475 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000019 ! 2-fold embryo Ce +relationship: RO:0002087 WBls:0000586 ! 475 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6303,9 +7350,11 @@ id: WBls:0000588 name: 477 min post first-cleavage Ce def: "The time period encompassing the 477th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "477 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000807 ! C. elegans life stage occurring during 2-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000019 ! 2-fold embryo Ce -relationship: starts_at_end_of WBls:0000587 ! 476 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000019 ! 2-fold embryo Ce +relationship: RO:0002087 WBls:0000587 ! 476 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6314,9 +7363,11 @@ id: WBls:0000589 name: 478 min post first-cleavage Ce def: "The time period encompassing the 478th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "478 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000807 ! C. elegans life stage occurring during 2-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000019 ! 2-fold embryo Ce -relationship: starts_at_end_of WBls:0000588 ! 477 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000019 ! 2-fold embryo Ce +relationship: RO:0002087 WBls:0000588 ! 477 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6325,9 +7376,11 @@ id: WBls:0000590 name: 479 min post first-cleavage Ce def: "The time period encompassing the 479th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "479 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000807 ! C. elegans life stage occurring during 2-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000019 ! 2-fold embryo Ce -relationship: starts_at_end_of WBls:0000589 ! 478 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000019 ! 2-fold embryo Ce +relationship: RO:0002087 WBls:0000589 ! 478 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6336,9 +7389,11 @@ id: WBls:0000591 name: 480 min post first-cleavage Ce def: "The time period encompassing the 480th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "480 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000807 ! C. elegans life stage occurring during 2-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000019 ! 2-fold embryo Ce -relationship: starts_at_end_of WBls:0000590 ! 479 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000019 ! 2-fold embryo Ce +relationship: RO:0002087 WBls:0000590 ! 479 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6347,9 +7402,11 @@ id: WBls:0000592 name: 481 min post first-cleavage Ce def: "The time period encompassing the 481st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "481 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000807 ! C. elegans life stage occurring during 2-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000019 ! 2-fold embryo Ce -relationship: starts_at_end_of WBls:0000591 ! 480 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000019 ! 2-fold embryo Ce +relationship: RO:0002087 WBls:0000591 ! 480 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6358,9 +7415,11 @@ id: WBls:0000593 name: 482 min post first-cleavage Ce def: "The time period encompassing the 482nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "482 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000807 ! C. elegans life stage occurring during 2-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000019 ! 2-fold embryo Ce -relationship: starts_at_end_of WBls:0000592 ! 481 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000019 ! 2-fold embryo Ce +relationship: RO:0002087 WBls:0000592 ! 481 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6369,9 +7428,11 @@ id: WBls:0000594 name: 483 min post first-cleavage Ce def: "The time period encompassing the 483rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "483 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000807 ! C. elegans life stage occurring during 2-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000019 ! 2-fold embryo Ce -relationship: starts_at_end_of WBls:0000593 ! 482 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000019 ! 2-fold embryo Ce +relationship: RO:0002087 WBls:0000593 ! 482 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6380,9 +7441,11 @@ id: WBls:0000595 name: 484 min post first-cleavage Ce def: "The time period encompassing the 484th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "484 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000807 ! C. elegans life stage occurring during 2-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000019 ! 2-fold embryo Ce -relationship: starts_at_end_of WBls:0000594 ! 483 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000019 ! 2-fold embryo Ce +relationship: RO:0002087 WBls:0000594 ! 483 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6391,9 +7454,11 @@ id: WBls:0000596 name: 485 min post first-cleavage Ce def: "The time period encompassing the 485th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "485 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000807 ! C. elegans life stage occurring during 2-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000019 ! 2-fold embryo Ce -relationship: starts_at_end_of WBls:0000595 ! 484 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000019 ! 2-fold embryo Ce +relationship: RO:0002087 WBls:0000595 ! 484 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6402,9 +7467,11 @@ id: WBls:0000597 name: 486 min post first-cleavage Ce def: "The time period encompassing the 486th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "486 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000807 ! C. elegans life stage occurring during 2-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000019 ! 2-fold embryo Ce -relationship: starts_at_end_of WBls:0000596 ! 485 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000019 ! 2-fold embryo Ce +relationship: RO:0002087 WBls:0000596 ! 485 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6413,9 +7480,11 @@ id: WBls:0000598 name: 487 min post first-cleavage Ce def: "The time period encompassing the 487th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "487 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000807 ! C. elegans life stage occurring during 2-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000019 ! 2-fold embryo Ce -relationship: starts_at_end_of WBls:0000597 ! 486 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000019 ! 2-fold embryo Ce +relationship: RO:0002087 WBls:0000597 ! 486 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6424,9 +7493,11 @@ id: WBls:0000599 name: 488 min post first-cleavage Ce def: "The time period encompassing the 488th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "488 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000807 ! C. elegans life stage occurring during 2-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000019 ! 2-fold embryo Ce -relationship: starts_at_end_of WBls:0000598 ! 487 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000019 ! 2-fold embryo Ce +relationship: RO:0002087 WBls:0000598 ! 487 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6435,9 +7506,11 @@ id: WBls:0000600 name: 489 min post first-cleavage Ce def: "The time period encompassing the 489th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "489 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000807 ! C. elegans life stage occurring during 2-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000019 ! 2-fold embryo Ce -relationship: starts_at_end_of WBls:0000599 ! 488 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000019 ! 2-fold embryo Ce +relationship: RO:0002087 WBls:0000599 ! 488 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6446,9 +7519,11 @@ id: WBls:0000601 name: 490 min post first-cleavage Ce def: "The time period encompassing the 490th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "490 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000807 ! C. elegans life stage occurring during 2-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000019 ! 2-fold embryo Ce -relationship: starts_at_end_of WBls:0000600 ! 489 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000019 ! 2-fold embryo Ce +relationship: RO:0002087 WBls:0000600 ! 489 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6457,9 +7532,11 @@ id: WBls:0000602 name: 491 min post first-cleavage Ce def: "The time period encompassing the 491st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "491 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000807 ! C. elegans life stage occurring during 2-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000019 ! 2-fold embryo Ce -relationship: starts_at_end_of WBls:0000601 ! 490 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000019 ! 2-fold embryo Ce +relationship: RO:0002087 WBls:0000601 ! 490 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6468,9 +7545,11 @@ id: WBls:0000603 name: 492 min post first-cleavage Ce def: "The time period encompassing the 492nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "492 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000807 ! C. elegans life stage occurring during 2-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000019 ! 2-fold embryo Ce -relationship: starts_at_end_of WBls:0000602 ! 491 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000019 ! 2-fold embryo Ce +relationship: RO:0002087 WBls:0000602 ! 491 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6479,9 +7558,11 @@ id: WBls:0000604 name: 493 min post first-cleavage Ce def: "The time period encompassing the 493rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "493 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000807 ! C. elegans life stage occurring during 2-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000019 ! 2-fold embryo Ce -relationship: starts_at_end_of WBls:0000603 ! 492 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000019 ! 2-fold embryo Ce +relationship: RO:0002087 WBls:0000603 ! 492 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6490,9 +7571,11 @@ id: WBls:0000605 name: 494 min post first-cleavage Ce def: "The time period encompassing the 494th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "494 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000807 ! C. elegans life stage occurring during 2-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000019 ! 2-fold embryo Ce -relationship: starts_at_end_of WBls:0000604 ! 493 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000019 ! 2-fold embryo Ce +relationship: RO:0002087 WBls:0000604 ! 493 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6501,9 +7584,11 @@ id: WBls:0000606 name: 495 min post first-cleavage Ce def: "The time period encompassing the 495th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "495 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000807 ! C. elegans life stage occurring during 2-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000019 ! 2-fold embryo Ce -relationship: starts_at_end_of WBls:0000605 ! 494 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000019 ! 2-fold embryo Ce +relationship: RO:0002087 WBls:0000605 ! 494 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6512,9 +7597,11 @@ id: WBls:0000607 name: 496 min post first-cleavage Ce def: "The time period encompassing the 496th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "496 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000807 ! C. elegans life stage occurring during 2-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000019 ! 2-fold embryo Ce -relationship: starts_at_end_of WBls:0000606 ! 495 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000019 ! 2-fold embryo Ce +relationship: RO:0002087 WBls:0000606 ! 495 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6523,9 +7610,11 @@ id: WBls:0000608 name: 497 min post first-cleavage Ce def: "The time period encompassing the 497th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "497 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000807 ! C. elegans life stage occurring during 2-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000019 ! 2-fold embryo Ce -relationship: starts_at_end_of WBls:0000607 ! 496 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000019 ! 2-fold embryo Ce +relationship: RO:0002087 WBls:0000607 ! 496 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6534,9 +7623,11 @@ id: WBls:0000609 name: 498 min post first-cleavage Ce def: "The time period encompassing the 498th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "498 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000807 ! C. elegans life stage occurring during 2-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000019 ! 2-fold embryo Ce -relationship: starts_at_end_of WBls:0000608 ! 497 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000019 ! 2-fold embryo Ce +relationship: RO:0002087 WBls:0000608 ! 497 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6545,9 +7636,11 @@ id: WBls:0000610 name: 499 min post first-cleavage Ce def: "The time period encompassing the 499th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "499 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000807 ! C. elegans life stage occurring during 2-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000019 ! 2-fold embryo Ce -relationship: starts_at_end_of WBls:0000609 ! 498 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000019 ! 2-fold embryo Ce +relationship: RO:0002087 WBls:0000609 ! 498 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6556,9 +7649,11 @@ id: WBls:0000611 name: 500 min post first-cleavage Ce def: "The time period encompassing the 500th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "500 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000807 ! C. elegans life stage occurring during 2-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000019 ! 2-fold embryo Ce -relationship: starts_at_end_of WBls:0000610 ! 499 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000019 ! 2-fold embryo Ce +relationship: RO:0002087 WBls:0000610 ! 499 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6567,9 +7662,11 @@ id: WBls:0000612 name: 501 min post first-cleavage Ce def: "The time period encompassing the 501st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "501 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000807 ! C. elegans life stage occurring during 2-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000019 ! 2-fold embryo Ce -relationship: starts_at_end_of WBls:0000611 ! 500 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000019 ! 2-fold embryo Ce +relationship: RO:0002087 WBls:0000611 ! 500 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6578,9 +7675,11 @@ id: WBls:0000613 name: 502 min post first-cleavage Ce def: "The time period encompassing the 502nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "502 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000807 ! C. elegans life stage occurring during 2-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000019 ! 2-fold embryo Ce -relationship: starts_at_end_of WBls:0000612 ! 501 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000019 ! 2-fold embryo Ce +relationship: RO:0002087 WBls:0000612 ! 501 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6589,9 +7688,11 @@ id: WBls:0000614 name: 503 min post first-cleavage Ce def: "The time period encompassing the 503rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "503 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000807 ! C. elegans life stage occurring during 2-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000019 ! 2-fold embryo Ce -relationship: starts_at_end_of WBls:0000613 ! 502 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000019 ! 2-fold embryo Ce +relationship: RO:0002087 WBls:0000613 ! 502 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6600,9 +7701,11 @@ id: WBls:0000615 name: 504 min post first-cleavage Ce def: "The time period encompassing the 504th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "504 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000807 ! C. elegans life stage occurring during 2-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000019 ! 2-fold embryo Ce -relationship: starts_at_end_of WBls:0000614 ! 503 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000019 ! 2-fold embryo Ce +relationship: RO:0002087 WBls:0000614 ! 503 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6611,9 +7714,11 @@ id: WBls:0000616 name: 505 min post first-cleavage Ce def: "The time period encompassing the 505th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "505 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000807 ! C. elegans life stage occurring during 2-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000019 ! 2-fold embryo Ce -relationship: starts_at_end_of WBls:0000615 ! 504 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000019 ! 2-fold embryo Ce +relationship: RO:0002087 WBls:0000615 ! 504 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6622,9 +7727,11 @@ id: WBls:0000617 name: 506 min post first-cleavage Ce def: "The time period encompassing the 506th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "506 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000807 ! C. elegans life stage occurring during 2-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000019 ! 2-fold embryo Ce -relationship: starts_at_end_of WBls:0000616 ! 505 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000019 ! 2-fold embryo Ce +relationship: RO:0002087 WBls:0000616 ! 505 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6633,9 +7740,11 @@ id: WBls:0000618 name: 507 min post first-cleavage Ce def: "The time period encompassing the 507th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "507 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000807 ! C. elegans life stage occurring during 2-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000019 ! 2-fold embryo Ce -relationship: starts_at_end_of WBls:0000617 ! 506 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000019 ! 2-fold embryo Ce +relationship: RO:0002087 WBls:0000617 ! 506 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6644,9 +7753,11 @@ id: WBls:0000619 name: 508 min post first-cleavage Ce def: "The time period encompassing the 508th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "508 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000807 ! C. elegans life stage occurring during 2-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000019 ! 2-fold embryo Ce -relationship: starts_at_end_of WBls:0000618 ! 507 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000019 ! 2-fold embryo Ce +relationship: RO:0002087 WBls:0000618 ! 507 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6655,9 +7766,11 @@ id: WBls:0000620 name: 509 min post first-cleavage Ce def: "The time period encompassing the 509th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "509 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000807 ! C. elegans life stage occurring during 2-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000019 ! 2-fold embryo Ce -relationship: starts_at_end_of WBls:0000619 ! 508 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000019 ! 2-fold embryo Ce +relationship: RO:0002087 WBls:0000619 ! 508 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6666,9 +7779,11 @@ id: WBls:0000621 name: 510 min post first-cleavage Ce def: "The time period encompassing the 510th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "510 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000807 ! C. elegans life stage occurring during 2-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000019 ! 2-fold embryo Ce -relationship: starts_at_end_of WBls:0000620 ! 509 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000019 ! 2-fold embryo Ce +relationship: RO:0002087 WBls:0000620 ! 509 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6677,9 +7792,11 @@ id: WBls:0000622 name: 511 min post first-cleavage Ce def: "The time period encompassing the 511st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "511 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000807 ! C. elegans life stage occurring during 2-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000019 ! 2-fold embryo Ce -relationship: starts_at_end_of WBls:0000621 ! 510 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000019 ! 2-fold embryo Ce +relationship: RO:0002087 WBls:0000621 ! 510 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6688,9 +7805,11 @@ id: WBls:0000623 name: 512 min post first-cleavage Ce def: "The time period encompassing the 512nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "512 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000807 ! C. elegans life stage occurring during 2-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000019 ! 2-fold embryo Ce -relationship: starts_at_end_of WBls:0000622 ! 511 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000019 ! 2-fold embryo Ce +relationship: RO:0002087 WBls:0000622 ! 511 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6699,9 +7818,11 @@ id: WBls:0000624 name: 513 min post first-cleavage Ce def: "The time period encompassing the 513rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "513 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000807 ! C. elegans life stage occurring during 2-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000019 ! 2-fold embryo Ce -relationship: starts_at_end_of WBls:0000623 ! 512 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000019 ! 2-fold embryo Ce +relationship: RO:0002087 WBls:0000623 ! 512 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6710,9 +7831,11 @@ id: WBls:0000625 name: 514 min post first-cleavage Ce def: "The time period encompassing the 514th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "514 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000807 ! C. elegans life stage occurring during 2-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000019 ! 2-fold embryo Ce -relationship: starts_at_end_of WBls:0000624 ! 513 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000019 ! 2-fold embryo Ce +relationship: RO:0002087 WBls:0000624 ! 513 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6721,9 +7844,11 @@ id: WBls:0000626 name: 515 min post first-cleavage Ce def: "The time period encompassing the 515th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "515 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000807 ! C. elegans life stage occurring during 2-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000019 ! 2-fold embryo Ce -relationship: starts_at_end_of WBls:0000625 ! 514 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000019 ! 2-fold embryo Ce +relationship: RO:0002087 WBls:0000625 ! 514 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6732,9 +7857,11 @@ id: WBls:0000627 name: 516 min post first-cleavage Ce def: "The time period encompassing the 516th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "516 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000807 ! C. elegans life stage occurring during 2-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000019 ! 2-fold embryo Ce -relationship: starts_at_end_of WBls:0000626 ! 515 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000019 ! 2-fold embryo Ce +relationship: RO:0002087 WBls:0000626 ! 515 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6743,9 +7870,11 @@ id: WBls:0000628 name: 517 min post first-cleavage Ce def: "The time period encompassing the 517th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "517 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000807 ! C. elegans life stage occurring during 2-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000019 ! 2-fold embryo Ce -relationship: starts_at_end_of WBls:0000627 ! 516 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000019 ! 2-fold embryo Ce +relationship: RO:0002087 WBls:0000627 ! 516 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6754,9 +7883,11 @@ id: WBls:0000629 name: 518 min post first-cleavage Ce def: "The time period encompassing the 518th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "518 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000807 ! C. elegans life stage occurring during 2-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000019 ! 2-fold embryo Ce -relationship: starts_at_end_of WBls:0000628 ! 517 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000019 ! 2-fold embryo Ce +relationship: RO:0002087 WBls:0000628 ! 517 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6765,9 +7896,11 @@ id: WBls:0000630 name: 519 min post first-cleavage Ce def: "The time period encompassing the 519th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "519 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000807 ! C. elegans life stage occurring during 2-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000019 ! 2-fold embryo Ce -relationship: starts_at_end_of WBls:0000629 ! 518 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000019 ! 2-fold embryo Ce +relationship: RO:0002087 WBls:0000629 ! 518 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6776,9 +7909,11 @@ id: WBls:0000631 name: 520 min post first-cleavage Ce def: "The time period encompassing the 520th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "520 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000807 ! C. elegans life stage occurring during 2-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000019 ! 2-fold embryo Ce -relationship: starts_at_end_of WBls:0000630 ! 519 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000019 ! 2-fold embryo Ce +relationship: RO:0002087 WBls:0000630 ! 519 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6787,9 +7922,11 @@ id: WBls:0000632 name: 521 min post first-cleavage Ce def: "The time period encompassing the 521st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "521 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000808 ! C. elegans life stage occurring during 3-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000020 ! 3-fold embryo Ce -relationship: starts_at_end_of WBls:0000631 ! 520 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000020 ! 3-fold embryo Ce +relationship: RO:0002087 WBls:0000631 ! 520 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6798,9 +7935,11 @@ id: WBls:0000633 name: 522 min post first-cleavage Ce def: "The time period encompassing the 522nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "522 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000808 ! C. elegans life stage occurring during 3-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000020 ! 3-fold embryo Ce -relationship: starts_at_end_of WBls:0000632 ! 521 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000020 ! 3-fold embryo Ce +relationship: RO:0002087 WBls:0000632 ! 521 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6809,9 +7948,11 @@ id: WBls:0000634 name: 523 min post first-cleavage Ce def: "The time period encompassing the 523rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "523 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000808 ! C. elegans life stage occurring during 3-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000020 ! 3-fold embryo Ce -relationship: starts_at_end_of WBls:0000633 ! 522 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000020 ! 3-fold embryo Ce +relationship: RO:0002087 WBls:0000633 ! 522 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6820,9 +7961,11 @@ id: WBls:0000635 name: 524 min post first-cleavage Ce def: "The time period encompassing the 524th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "524 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000808 ! C. elegans life stage occurring during 3-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000020 ! 3-fold embryo Ce -relationship: starts_at_end_of WBls:0000634 ! 523 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000020 ! 3-fold embryo Ce +relationship: RO:0002087 WBls:0000634 ! 523 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6831,9 +7974,11 @@ id: WBls:0000636 name: 525 min post first-cleavage Ce def: "The time period encompassing the 525th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "525 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000808 ! C. elegans life stage occurring during 3-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000020 ! 3-fold embryo Ce -relationship: starts_at_end_of WBls:0000635 ! 524 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000020 ! 3-fold embryo Ce +relationship: RO:0002087 WBls:0000635 ! 524 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6842,9 +7987,11 @@ id: WBls:0000637 name: 526 min post first-cleavage Ce def: "The time period encompassing the 526th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "526 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000808 ! C. elegans life stage occurring during 3-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000020 ! 3-fold embryo Ce -relationship: starts_at_end_of WBls:0000636 ! 525 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000020 ! 3-fold embryo Ce +relationship: RO:0002087 WBls:0000636 ! 525 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6853,9 +8000,11 @@ id: WBls:0000638 name: 527 min post first-cleavage Ce def: "The time period encompassing the 527th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "527 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000808 ! C. elegans life stage occurring during 3-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000020 ! 3-fold embryo Ce -relationship: starts_at_end_of WBls:0000637 ! 526 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000020 ! 3-fold embryo Ce +relationship: RO:0002087 WBls:0000637 ! 526 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6864,9 +8013,11 @@ id: WBls:0000639 name: 528 min post first-cleavage Ce def: "The time period encompassing the 528th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "528 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000808 ! C. elegans life stage occurring during 3-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000020 ! 3-fold embryo Ce -relationship: starts_at_end_of WBls:0000638 ! 527 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000020 ! 3-fold embryo Ce +relationship: RO:0002087 WBls:0000638 ! 527 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6875,9 +8026,11 @@ id: WBls:0000640 name: 529 min post first-cleavage Ce def: "The time period encompassing the 529th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "529 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000808 ! C. elegans life stage occurring during 3-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000020 ! 3-fold embryo Ce -relationship: starts_at_end_of WBls:0000639 ! 528 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000020 ! 3-fold embryo Ce +relationship: RO:0002087 WBls:0000639 ! 528 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6886,9 +8039,11 @@ id: WBls:0000641 name: 530 min post first-cleavage Ce def: "The time period encompassing the 530th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "530 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000808 ! C. elegans life stage occurring during 3-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000020 ! 3-fold embryo Ce -relationship: starts_at_end_of WBls:0000640 ! 529 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000020 ! 3-fold embryo Ce +relationship: RO:0002087 WBls:0000640 ! 529 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6897,9 +8052,11 @@ id: WBls:0000642 name: 531 min post first-cleavage Ce def: "The time period encompassing the 531st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "531 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000808 ! C. elegans life stage occurring during 3-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000020 ! 3-fold embryo Ce -relationship: starts_at_end_of WBls:0000641 ! 530 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000020 ! 3-fold embryo Ce +relationship: RO:0002087 WBls:0000641 ! 530 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6908,9 +8065,11 @@ id: WBls:0000643 name: 532 min post first-cleavage Ce def: "The time period encompassing the 532nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "532 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000808 ! C. elegans life stage occurring during 3-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000020 ! 3-fold embryo Ce -relationship: starts_at_end_of WBls:0000642 ! 531 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000020 ! 3-fold embryo Ce +relationship: RO:0002087 WBls:0000642 ! 531 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6919,9 +8078,11 @@ id: WBls:0000644 name: 533 min post first-cleavage Ce def: "The time period encompassing the 533rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "533 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000808 ! C. elegans life stage occurring during 3-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000020 ! 3-fold embryo Ce -relationship: starts_at_end_of WBls:0000643 ! 532 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000020 ! 3-fold embryo Ce +relationship: RO:0002087 WBls:0000643 ! 532 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6930,9 +8091,11 @@ id: WBls:0000645 name: 534 min post first-cleavage Ce def: "The time period encompassing the 534th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "534 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000808 ! C. elegans life stage occurring during 3-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000020 ! 3-fold embryo Ce -relationship: starts_at_end_of WBls:0000644 ! 533 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000020 ! 3-fold embryo Ce +relationship: RO:0002087 WBls:0000644 ! 533 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6941,9 +8104,11 @@ id: WBls:0000646 name: 535 min post first-cleavage Ce def: "The time period encompassing the 535th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "535 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000808 ! C. elegans life stage occurring during 3-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000020 ! 3-fold embryo Ce -relationship: starts_at_end_of WBls:0000645 ! 534 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000020 ! 3-fold embryo Ce +relationship: RO:0002087 WBls:0000645 ! 534 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6952,9 +8117,11 @@ id: WBls:0000647 name: 536 min post first-cleavage Ce def: "The time period encompassing the 536th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "536 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000808 ! C. elegans life stage occurring during 3-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000020 ! 3-fold embryo Ce -relationship: starts_at_end_of WBls:0000646 ! 535 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000020 ! 3-fold embryo Ce +relationship: RO:0002087 WBls:0000646 ! 535 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6963,9 +8130,11 @@ id: WBls:0000648 name: 537 min post first-cleavage Ce def: "The time period encompassing the 537th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "537 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000808 ! C. elegans life stage occurring during 3-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000020 ! 3-fold embryo Ce -relationship: starts_at_end_of WBls:0000647 ! 536 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000020 ! 3-fold embryo Ce +relationship: RO:0002087 WBls:0000647 ! 536 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6974,9 +8143,11 @@ id: WBls:0000649 name: 538 min post first-cleavage Ce def: "The time period encompassing the 538th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "538 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000808 ! C. elegans life stage occurring during 3-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000020 ! 3-fold embryo Ce -relationship: starts_at_end_of WBls:0000648 ! 537 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000020 ! 3-fold embryo Ce +relationship: RO:0002087 WBls:0000648 ! 537 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6985,9 +8156,11 @@ id: WBls:0000650 name: 539 min post first-cleavage Ce def: "The time period encompassing the 539th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "539 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000808 ! C. elegans life stage occurring during 3-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000020 ! 3-fold embryo Ce -relationship: starts_at_end_of WBls:0000649 ! 538 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000020 ! 3-fold embryo Ce +relationship: RO:0002087 WBls:0000649 ! 538 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -6996,9 +8169,11 @@ id: WBls:0000651 name: 540 min post first-cleavage Ce def: "The time period encompassing the 540th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "540 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000808 ! C. elegans life stage occurring during 3-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000020 ! 3-fold embryo Ce -relationship: starts_at_end_of WBls:0000650 ! 539 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000020 ! 3-fold embryo Ce +relationship: RO:0002087 WBls:0000650 ! 539 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -7007,9 +8182,11 @@ id: WBls:0000652 name: 541 min post first-cleavage Ce def: "The time period encompassing the 541st minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "541 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000808 ! C. elegans life stage occurring during 3-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000020 ! 3-fold embryo Ce -relationship: starts_at_end_of WBls:0000651 ! 540 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000020 ! 3-fold embryo Ce +relationship: RO:0002087 WBls:0000651 ! 540 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -7018,9 +8195,11 @@ id: WBls:0000653 name: 542 min post first-cleavage Ce def: "The time period encompassing the 542nd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "542 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000808 ! C. elegans life stage occurring during 3-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000020 ! 3-fold embryo Ce -relationship: starts_at_end_of WBls:0000652 ! 541 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000020 ! 3-fold embryo Ce +relationship: RO:0002087 WBls:0000652 ! 541 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -7029,9 +8208,11 @@ id: WBls:0000654 name: 543 min post first-cleavage Ce def: "The time period encompassing the 543rd minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "543 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000808 ! C. elegans life stage occurring during 3-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000020 ! 3-fold embryo Ce -relationship: starts_at_end_of WBls:0000653 ! 542 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000020 ! 3-fold embryo Ce +relationship: RO:0002087 WBls:0000653 ! 542 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -7040,9 +8221,11 @@ id: WBls:0000655 name: 544 min post first-cleavage Ce def: "The time period encompassing the 544th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "544 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000808 ! C. elegans life stage occurring during 3-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000020 ! 3-fold embryo Ce -relationship: starts_at_end_of WBls:0000654 ! 543 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000020 ! 3-fold embryo Ce +relationship: RO:0002087 WBls:0000654 ! 543 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -7051,9 +8234,11 @@ id: WBls:0000656 name: 545 min post first-cleavage Ce def: "The time period encompassing the 545th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "545 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000808 ! C. elegans life stage occurring during 3-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000020 ! 3-fold embryo Ce -relationship: starts_at_end_of WBls:0000655 ! 544 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000020 ! 3-fold embryo Ce +relationship: RO:0002087 WBls:0000655 ! 544 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -7062,9 +8247,11 @@ id: WBls:0000657 name: 546 min post first-cleavage Ce def: "The time period encompassing the 546th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "546 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000808 ! C. elegans life stage occurring during 3-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000020 ! 3-fold embryo Ce -relationship: starts_at_end_of WBls:0000656 ! 545 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000020 ! 3-fold embryo Ce +relationship: RO:0002087 WBls:0000656 ! 545 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -7073,9 +8260,11 @@ id: WBls:0000658 name: 547 min post first-cleavage Ce def: "The time period encompassing the 547th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "547 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000808 ! C. elegans life stage occurring during 3-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000020 ! 3-fold embryo Ce -relationship: starts_at_end_of WBls:0000657 ! 546 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000020 ! 3-fold embryo Ce +relationship: RO:0002087 WBls:0000657 ! 546 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -7084,9 +8273,11 @@ id: WBls:0000659 name: 548 min post first-cleavage Ce def: "The time period encompassing the 548th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "548 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000808 ! C. elegans life stage occurring during 3-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000020 ! 3-fold embryo Ce -relationship: starts_at_end_of WBls:0000658 ! 547 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000020 ! 3-fold embryo Ce +relationship: RO:0002087 WBls:0000658 ! 547 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -7095,9 +8286,11 @@ id: WBls:0000660 name: 549 min post first-cleavage Ce def: "The time period encompassing the 549th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "549 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000808 ! C. elegans life stage occurring during 3-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000020 ! 3-fold embryo Ce -relationship: starts_at_end_of WBls:0000659 ! 548 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000020 ! 3-fold embryo Ce +relationship: RO:0002087 WBls:0000659 ! 548 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -7106,9 +8299,11 @@ id: WBls:0000661 name: 550 min post first-cleavage Ce def: "The time period encompassing the 550th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:dr, WB:WBPaper00000653] synonym: "550 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000808 ! C. elegans life stage occurring during 3-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000020 ! 3-fold embryo Ce -relationship: starts_at_end_of WBls:0000660 ! 549 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000020 ! 3-fold embryo Ce +relationship: RO:0002087 WBls:0000660 ! 549 min post first-cleavage Ce created_by: danielaraciti creation_date: 2014-04-25T09:29:36Z @@ -7123,7 +8318,7 @@ synonym: "unsheathed microfilaria" BROAD [] synonym: "unsheathed microfilaria Bma" EXACT [] is_a: WBls:0000665 ! Brugia microfilaria is_a: WBls:0000666 ! unsheathed microfilaria -relationship: starts_at_end_of WBls:0000077 ! Brugia sheathed microfilaria +relationship: RO:0002087 WBls:0000077 ! Brugia sheathed microfilaria created_by: danielaraciti creation_date: 2014-11-10T09:29:36Z @@ -7146,8 +8341,9 @@ def: "An early stage in the life cycle of Brugia species, which develops from th synonym: "Brugia MF" EXACT [] synonym: "microfilaria" BROAD [] synonym: "microfilaria Bma" EXACT [] +is_a: BFO:0000003 is_a: WBls:0000664 ! microfilaria -relationship: part_of WBls:0000097 ! Brugia larval stage +relationship: BFO:0000050 WBls:0000097 ! Brugia larval stage created_by: danielaraciti creation_date: 2014-11-25T09:25:34Z @@ -7157,9 +8353,10 @@ name: unsheathed microfilaria def: "A microfilaria life stage in which larvae are not sheathed by a membrane thought to be derived from the vitelline membrane." [WB:WBPerson2987] synonym: "unsheathed microfilaria nematode" EXACT [] synonym: "unsheathed microfilariae" EXACT [] +is_a: BFO:0000003 is_a: WBls:0000664 ! microfilaria -relationship: starts_at_end_of WBls:0000102 ! nematode embryo -relationship: starts_at_end_of WBls:0000110 ! sheathed microfilaria +relationship: RO:0002087 WBls:0000102 ! nematode embryo +relationship: RO:0002087 WBls:0000110 ! sheathed microfilaria created_by: danielaraciti creation_date: 2014-11-25T09:50:35Z @@ -7196,63 +8393,70 @@ id: WBls:0000670 name: 6-days post-L4 adult hermaphrodite Ce def: "At 20 Centigrade: 6-7 days after L4-adult molt. 9-10 days after first cleavage." [WB:dr] synonym: "6-days post-L4 adult hermaphrodite" BROAD [] -is_a: WBls:0000825 ! C. elegans life stage -relationship: part_of WBls:0000057 ! adult hermaphrodite Ce -relationship: starts_at_end_of WBls:0000068 ! 5-days post-L4 adult hermaphrodite Ce +is_a: BFO:0000003 +is_a: WBls:0000816 ! C. elegans life stage occurring during adulthood +relationship: BFO:0000050 WBls:0000057 ! adult hermaphrodite Ce +relationship: RO:0002087 WBls:0000068 ! 5-days post-L4 adult hermaphrodite Ce [Term] id: WBls:0000671 name: 7-days post-L4 adult hermaphrodite Ce def: "At 20 Centigrade: 7-8 days after L4-adult molt. 10-11 days after first cleavage." [WB:dr] synonym: "7-days post-L4 adult hermaphrodite" BROAD [] -is_a: WBls:0000825 ! C. elegans life stage -relationship: part_of WBls:0000057 ! adult hermaphrodite Ce -relationship: starts_at_end_of WBls:0000670 ! 6-days post-L4 adult hermaphrodite Ce +is_a: BFO:0000003 +is_a: WBls:0000816 ! C. elegans life stage occurring during adulthood +relationship: BFO:0000050 WBls:0000057 ! adult hermaphrodite Ce +relationship: RO:0002087 WBls:0000670 ! 6-days post-L4 adult hermaphrodite Ce [Term] id: WBls:0000672 name: 8-days post-L4 adult hermaphrodite Ce def: "At 20 Centigrade: 8-9 days after L4-adult molt. 11-12 days after first cleavage." [WB:dr] synonym: "8-days post-L4 adult hermaphrodite" BROAD [] -is_a: WBls:0000825 ! C. elegans life stage -relationship: part_of WBls:0000057 ! adult hermaphrodite Ce -relationship: starts_at_end_of WBls:0000671 ! 7-days post-L4 adult hermaphrodite Ce +is_a: BFO:0000003 +is_a: WBls:0000816 ! C. elegans life stage occurring during adulthood +relationship: BFO:0000050 WBls:0000057 ! adult hermaphrodite Ce +relationship: RO:0002087 WBls:0000671 ! 7-days post-L4 adult hermaphrodite Ce [Term] id: WBls:0000673 name: 9-days post-L4 adult hermaphrodite Ce def: "At 20 Centigrade: 9-10 days after L4-adult molt. 12-13 days after first cleavage." [WB:dr] synonym: "9-days post-L4 adult hermaphrodite" BROAD [] -is_a: WBls:0000825 ! C. elegans life stage -relationship: part_of WBls:0000057 ! adult hermaphrodite Ce -relationship: starts_at_end_of WBls:0000672 ! 8-days post-L4 adult hermaphrodite Ce +is_a: BFO:0000003 +is_a: WBls:0000816 ! C. elegans life stage occurring during adulthood +relationship: BFO:0000050 WBls:0000057 ! adult hermaphrodite Ce +relationship: RO:0002087 WBls:0000672 ! 8-days post-L4 adult hermaphrodite Ce [Term] id: WBls:0000674 name: 10-days post-L4 adult hermaphrodite Ce def: "At 20 Centigrade: 10-11 days after L4-adult molt. 13-14 days after first cleavage." [WB:dr] synonym: "10-days post-L4 adult hermaphrodite" BROAD [] -is_a: WBls:0000825 ! C. elegans life stage -relationship: part_of WBls:0000057 ! adult hermaphrodite Ce -relationship: starts_at_end_of WBls:0000673 ! 9-days post-L4 adult hermaphrodite Ce +is_a: BFO:0000003 +is_a: WBls:0000816 ! C. elegans life stage occurring during adulthood +relationship: BFO:0000050 WBls:0000057 ! adult hermaphrodite Ce +relationship: RO:0002087 WBls:0000673 ! 9-days post-L4 adult hermaphrodite Ce [Term] id: WBls:0000675 name: 15-days post-L4 adult hermaphrodite Ce def: "At 20 Centigrade: 15-16 days after L4-adult molt. 18-19 days after first cleavage." [WB:dr] synonym: "15-days post-L4 adult hermaphrodite" BROAD [] -is_a: WBls:0000825 ! C. elegans life stage -relationship: part_of WBls:0000057 ! adult hermaphrodite Ce -relationship: preceded_by WBls:0000800 ! 14-days post-L4 adult hermaphrodite Ce +is_a: BFO:0000003 +is_a: WBls:0000816 ! C. elegans life stage occurring during adulthood +relationship: BFO:0000050 WBls:0000057 ! adult hermaphrodite Ce +relationship: BFO:0000062 WBls:0000800 ! 14-days post-L4 adult hermaphrodite Ce [Term] id: WBls:0000676 name: 20-days post-L4 adult hermaphrodite Ce def: "At 20 Centigrade: 20-21 days after L4-adult molt. 23-24 days after first cleavage." [WB:dr] synonym: "20-days post-L4 adult hermaphrodite" BROAD [] -is_a: WBls:0000825 ! C. elegans life stage -relationship: part_of WBls:0000057 ! adult hermaphrodite Ce -relationship: preceded_by WBls:0000111 ! 16-18 days post-L4 adult hermaphrodite Ce +is_a: BFO:0000003 +is_a: WBls:0000816 ! C. elegans life stage occurring during adulthood +relationship: BFO:0000050 WBls:0000057 ! adult hermaphrodite Ce +relationship: BFO:0000062 WBls:0000111 ! 16-18 days post-L4 adult hermaphrodite Ce [Term] id: WBls:0000677 @@ -7324,9 +8528,10 @@ id: WBls:0000683 name: L4.0 larva Ce def: "The first sub-stage of the L4 larva. All vulval cells are migrating toward the center of the future vulva. vulA, vulB, and vulE have divided, but vulC and vulF have not. At 20 Centigrade: 34.3 hours after hatching, 0.3 hours from the L3-to-L4 molt." [WB:dr, WB:WBPaper00046933] synonym: "L4.0 larva" BROAD [] -is_a: WBls:0000825 ! C. elegans life stage -relationship: part_of WBls:0000038 ! L4 larva Ce -relationship: starts_at_end_of WBls:0000037 ! L3-L4 molt Ce +is_a: BFO:0000003 +is_a: WBls:0000821 ! C. elegans life stage occurring during L4 larval stage +relationship: BFO:0000050 WBls:0000038 ! L4 larva Ce +relationship: RO:0002087 WBls:0000037 ! L3-L4 molt Ce created_by: danielaraciti creation_date: 2015-06-03T09:03:09Z @@ -7335,9 +8540,10 @@ id: WBls:0000684 name: L4.1 larva Ce def: "The second sub-stage of the L4 larva. The inner cells of the vulva have finished migrating and have formed toroids, but have not fused. vulC and vulF have divided and a narrow lumen has formed. At 20 Centigrade: 35.1 hours after hatching, 1.1 hours from the L3-to-L4 molt." [WB:dr, WB:WBPaper00046933] synonym: "L4.1 larva" BROAD [] -is_a: WBls:0000825 ! C. elegans life stage -relationship: part_of WBls:0000038 ! L4 larva Ce -relationship: starts_at_end_of WBls:0000683 ! L4.0 larva Ce +is_a: BFO:0000003 +is_a: WBls:0000821 ! C. elegans life stage occurring during L4 larval stage +relationship: BFO:0000050 WBls:0000038 ! L4 larva Ce +relationship: RO:0002087 WBls:0000683 ! L4.0 larva Ce created_by: danielaraciti creation_date: 2015-06-03T09:06:19Z @@ -7346,9 +8552,10 @@ id: WBls:0000685 name: L4.2 larva Ce def: "The third sub-stage of the L4 larva. All vulval cells complete migration. vulA, vulC, and vulD undergo cell fusion. The vulval lumen has widened and a prominent kink has formed between vulC and vulD. The uterine lumen has not started to form. At 20 Centigrade: 36.8 hours after hatching, 2.8 hours from the L3-to-L4 molt." [WB:dr, WB:WBPaper00046933] synonym: "L4.2 larva" BROAD [] -is_a: WBls:0000825 ! C. elegans life stage -relationship: part_of WBls:0000038 ! L4 larva Ce -relationship: starts_at_end_of WBls:0000684 ! L4.1 larva Ce +is_a: BFO:0000003 +is_a: WBls:0000821 ! C. elegans life stage occurring during L4 larval stage +relationship: BFO:0000050 WBls:0000038 ! L4 larva Ce +relationship: RO:0002087 WBls:0000684 ! L4.1 larva Ce created_by: danielaraciti creation_date: 2015-06-03T09:09:03Z @@ -7357,9 +8564,10 @@ id: WBls:0000686 name: L4.3 larva Ce def: "The fourth sub-stage of the L4 larva. vulFs have separated and the apex of the lumen is flat and capped by the anchor cell. The uterine lumen starts to form. At 20 Centigrade: 38.1 hours after hatching, 4.1 hours from the L3-to-L4 molt." [WB:dr, WB:WBPaper00046933] synonym: "L4.3 larva" BROAD [] -is_a: WBls:0000825 ! C. elegans life stage -relationship: part_of WBls:0000038 ! L4 larva Ce -relationship: starts_at_end_of WBls:0000685 ! L4.2 larva Ce +is_a: BFO:0000003 +is_a: WBls:0000821 ! C. elegans life stage occurring during L4 larval stage +relationship: BFO:0000050 WBls:0000038 ! L4 larva Ce +relationship: RO:0002087 WBls:0000685 ! L4.2 larva Ce created_by: danielaraciti creation_date: 2015-06-03T09:10:09Z @@ -7368,9 +8576,10 @@ id: WBls:0000687 name: L4.4 larva Ce def: "The fifth sub-stage of the L4 larva. utse is visible as a thin layer separating the vulval and uterine lumens. 'Fingers' are formed at the sides of the vulva next to vulB1 and vulB2. The uterine lumen is fully distended. At 20 Centigrade: 39.0 hours after hatching, 5.0 hours from the L3-to-L4 molt." [WB:dr, WB:WBPaper00046933] synonym: "L4.4 larva" BROAD [] -is_a: WBls:0000825 ! C. elegans life stage -relationship: part_of WBls:0000038 ! L4 larva Ce -relationship: starts_at_end_of WBls:0000686 ! L4.3 larva Ce +is_a: BFO:0000003 +is_a: WBls:0000821 ! C. elegans life stage occurring during L4 larval stage +relationship: BFO:0000050 WBls:0000038 ! L4 larva Ce +relationship: RO:0002087 WBls:0000686 ! L4.3 larva Ce created_by: danielaraciti creation_date: 2015-06-03T09:11:12Z @@ -7379,9 +8588,10 @@ id: WBls:0000688 name: L4.5 larva Ce def: "The sixth sub-stage of the L4 larva. The side of the vulval lumen between vulC and vulD forms a smooth curve. At 20 Centigrade: 40.4 hours after hatching, 6.4 hours from the L3-to-L4 molt." [WB:dr, WB:WBPaper00046933] synonym: "L4.5 larva" BROAD [] -is_a: WBls:0000825 ! C. elegans life stage -relationship: part_of WBls:0000038 ! L4 larva Ce -relationship: starts_at_end_of WBls:0000687 ! L4.4 larva Ce +is_a: BFO:0000003 +is_a: WBls:0000821 ! C. elegans life stage occurring during L4 larval stage +relationship: BFO:0000050 WBls:0000038 ! L4 larva Ce +relationship: RO:0002087 WBls:0000687 ! L4.4 larva Ce created_by: danielaraciti creation_date: 2015-06-03T09:13:09Z @@ -7390,9 +8600,10 @@ id: WBls:0000689 name: L4.6 larva Ce def: "The seventh sub-stage of the L4 larva. 'Fingers' between vulB2 and vulC are pointed ventrally. At 20 Centigrade: 41.5 hours after hatching, 7.5 hours from the L3-to-L4 molt." [WB:dr, WB:WBPaper00046933] synonym: "L4.6 larva" BROAD [] -is_a: WBls:0000825 ! C. elegans life stage -relationship: part_of WBls:0000038 ! L4 larva Ce -relationship: starts_at_end_of WBls:0000688 ! L4.5 larva Ce +is_a: BFO:0000003 +is_a: WBls:0000821 ! C. elegans life stage occurring during L4 larval stage +relationship: BFO:0000050 WBls:0000038 ! L4 larva Ce +relationship: RO:0002087 WBls:0000688 ! L4.5 larva Ce created_by: danielaraciti creation_date: 2015-06-03T09:15:18Z @@ -7401,9 +8612,10 @@ id: WBls:0000690 name: L4.7 larva Ce def: "The eighth sub-stage of the L4 larva. vulFs have migrated closer such that the lumen is narrowed in the dorsal section. The approximate cutoff is when the width of the channel is less than the width of the vulD nucleus. At 20 Centigrade: 42.3 hours after hatching, 8.3 hours from the L3-to-L4 molt." [WB:dr, WB:WBPaper00046933] synonym: "L4.7 larva" BROAD [] -is_a: WBls:0000825 ! C. elegans life stage -relationship: part_of WBls:0000038 ! L4 larva Ce -relationship: starts_at_end_of WBls:0000689 ! L4.6 larva Ce +is_a: BFO:0000003 +is_a: WBls:0000821 ! C. elegans life stage occurring during L4 larval stage +relationship: BFO:0000050 WBls:0000038 ! L4 larva Ce +relationship: RO:0002087 WBls:0000689 ! L4.6 larva Ce created_by: danielaraciti creation_date: 2015-06-03T09:16:07Z @@ -7412,9 +8624,10 @@ id: WBls:0000691 name: L4.8 larva Ce def: "The ninth sub-stage of the L4 larva. The vulval lumen is partially collapsed. At 20 Centigrade: 42.5 hours after hatching, 8.5 hours from the L3-to-L4 molt." [WB:dr, WB:WBPaper00046933] synonym: "L4.8 larva" BROAD [] -is_a: WBls:0000825 ! C. elegans life stage -relationship: part_of WBls:0000038 ! L4 larva Ce -relationship: starts_at_end_of WBls:0000690 ! L4.7 larva Ce +is_a: BFO:0000003 +is_a: WBls:0000821 ! C. elegans life stage occurring during L4 larval stage +relationship: BFO:0000050 WBls:0000038 ! L4 larva Ce +relationship: RO:0002087 WBls:0000690 ! L4.7 larva Ce created_by: danielaraciti creation_date: 2015-06-03T09:18:02Z @@ -7423,9 +8636,10 @@ id: WBls:0000692 name: L4.9 larva Ce def: "The tenth sub-stage of the L4 larva. The vulval lumen is completely collapsed. At 20 Centigrade: 42.8 hours after hatching, 8.8 hours from the L3-to-L4 molt." [WB:dr, WB:WBPaper00046933] synonym: "L4.9 larva" BROAD [] -is_a: WBls:0000825 ! C. elegans life stage -relationship: part_of WBls:0000038 ! L4 larva Ce -relationship: starts_at_end_of WBls:0000691 ! L4.8 larva Ce +is_a: BFO:0000003 +is_a: WBls:0000821 ! C. elegans life stage occurring during L4 larval stage +relationship: BFO:0000050 WBls:0000038 ! L4 larva Ce +relationship: RO:0002087 WBls:0000691 ! L4.8 larva Ce created_by: danielaraciti creation_date: 2015-06-03T09:20:37Z @@ -7434,9 +8648,11 @@ id: WBls:0000693 name: 560 min post first-cleavage Ce def: "The time period encompassing the 560th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:WBPaper00000653] synonym: "560 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000808 ! C. elegans life stage occurring during 3-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000020 ! 3-fold embryo Ce -relationship: preceded_by WBls:0000661 ! 550 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000020 ! 3-fold embryo Ce +relationship: BFO:0000062 WBls:0000661 ! 550 min post first-cleavage Ce created_by: danielaraciti creation_date: 2015-10-06T09:27:59Z @@ -7445,9 +8661,11 @@ id: WBls:0000694 name: 570 min post first-cleavage Ce def: "The time period encompassing the 570th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:WBPaper00000653] synonym: "570 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000808 ! C. elegans life stage occurring during 3-fold embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000020 ! 3-fold embryo Ce -relationship: preceded_by WBls:0000693 ! 560 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000020 ! 3-fold embryo Ce +relationship: BFO:0000062 WBls:0000693 ! 560 min post first-cleavage Ce created_by: danielaraciti creation_date: 2015-10-06T10:07:46Z @@ -7456,9 +8674,11 @@ id: WBls:0000695 name: 640 min post first-cleavage Ce def: "The time period encompassing the 640th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:WBPaper00000653] synonym: "640 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000811 ! C. elegans life stage occurring during fully-elongated embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000021 ! fully-elongated embryo Ce -relationship: preceded_by WBls:0000694 ! 570 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000021 ! fully-elongated embryo Ce +relationship: BFO:0000062 WBls:0000694 ! 570 min post first-cleavage Ce created_by: danielaraciti creation_date: 2015-10-06T11:08:29Z @@ -7467,9 +8687,11 @@ id: WBls:0000696 name: 650 min post first-cleavage Ce def: "The time period encompassing the 650th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:WBPaper00000653] synonym: "650 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000811 ! C. elegans life stage occurring during fully-elongated embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000021 ! fully-elongated embryo Ce -relationship: preceded_by WBls:0000695 ! 640 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000021 ! fully-elongated embryo Ce +relationship: BFO:0000062 WBls:0000695 ! 640 min post first-cleavage Ce created_by: danielaraciti creation_date: 2015-10-06T11:11:15Z @@ -7478,9 +8700,11 @@ id: WBls:0000697 name: 660 min post first-cleavage Ce def: "The time period encompassing the 660th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:WBPaper00000653] synonym: "660 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000811 ! C. elegans life stage occurring during fully-elongated embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000021 ! fully-elongated embryo Ce -relationship: preceded_by WBls:0000696 ! 650 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000021 ! fully-elongated embryo Ce +relationship: BFO:0000062 WBls:0000696 ! 650 min post first-cleavage Ce created_by: danielaraciti creation_date: 2015-10-06T11:13:05Z @@ -7489,9 +8713,11 @@ id: WBls:0000698 name: 720 min post first-cleavage Ce def: "The time period encompassing the 720th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:WBPaper00000653] synonym: "720 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000811 ! C. elegans life stage occurring during fully-elongated embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000021 ! fully-elongated embryo Ce -relationship: preceded_by WBls:0000697 ! 660 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000021 ! fully-elongated embryo Ce +relationship: BFO:0000062 WBls:0000697 ! 660 min post first-cleavage Ce created_by: danielaraciti creation_date: 2015-10-06T11:16:33Z @@ -7500,9 +8726,11 @@ id: WBls:0000699 name: 770 min post first-cleavage Ce def: "The time period encompassing the 770th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:WBPaper00000653] synonym: "770 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000811 ! C. elegans life stage occurring during fully-elongated embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000021 ! fully-elongated embryo Ce -relationship: preceded_by WBls:0000698 ! 720 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000021 ! fully-elongated embryo Ce +relationship: BFO:0000062 WBls:0000698 ! 720 min post first-cleavage Ce created_by: danielaraciti creation_date: 2015-10-06T11:18:49Z @@ -7511,9 +8739,11 @@ id: WBls:0000700 name: 780 min post first-cleavage Ce def: "The time period encompassing the 780th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:WBPaper00000653] synonym: "780 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000811 ! C. elegans life stage occurring during fully-elongated embryo is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000021 ! fully-elongated embryo Ce -relationship: preceded_by WBls:0000699 ! 770 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000021 ! fully-elongated embryo Ce +relationship: BFO:0000062 WBls:0000699 ! 770 min post first-cleavage Ce created_by: danielaraciti creation_date: 2015-10-06T11:23:34Z @@ -7522,9 +8752,11 @@ id: WBls:0000701 name: 820 min post first-cleavage Ce def: "The time period encompassing the 820th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:WBPaper00000653] synonym: "820 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000818 ! C. elegans life stage occurring during L1 larval stage is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000024 ! L1 larva Ce -relationship: preceded_by WBls:0000700 ! 780 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000024 ! L1 larva Ce +relationship: BFO:0000062 WBls:0000700 ! 780 min post first-cleavage Ce created_by: danielaraciti creation_date: 2015-10-06T11:25:47Z @@ -7533,9 +8765,11 @@ id: WBls:0000702 name: 830 min post first-cleavage Ce def: "The time period encompassing the 830th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:WBPaper00000653] synonym: "830 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000818 ! C. elegans life stage occurring during L1 larval stage is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000024 ! L1 larva Ce -relationship: preceded_by WBls:0000701 ! 820 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000024 ! L1 larva Ce +relationship: BFO:0000062 WBls:0000701 ! 820 min post first-cleavage Ce created_by: danielaraciti creation_date: 2015-10-06T11:28:41Z @@ -7544,9 +8778,11 @@ id: WBls:0000703 name: 850 min post first-cleavage Ce def: "The time period encompassing the 850th minute post first cleavage at 20 Centigrade with respect to Sulston's lineage tree." [WB:WBPaper00000653] synonym: "850 min post first-cleavage" BROAD [] +is_a: BFO:0000003 +is_a: WBls:0000818 ! C. elegans life stage occurring during L1 larval stage is_a: WBls:0000822 ! C. elegans life stage by minutes post first cleavage -relationship: part_of WBls:0000024 ! L1 larva Ce -relationship: preceded_by WBls:0000702 ! 830 min post first-cleavage Ce +relationship: BFO:0000050 WBls:0000024 ! L1 larva Ce +relationship: BFO:0000062 WBls:0000702 ! 830 min post first-cleavage Ce created_by: danielaraciti creation_date: 2015-10-06T11:30:33Z @@ -7600,8 +8836,9 @@ id: WBls:0000709 name: schistosomulum def: "A tailless cercarium of Schistosoma sp, which resides in the definitive host. After penetration and spending a few days in the skin, schistosomula migrate to the lungs and enter the systemic circulation and are carried to the mesenteric vein of the host where they mature into adult schistosomes." [WB:jl] synonym: "somule" EXACT [] +is_a: BFO:0000003 is_a: WBls:0000711 ! Digenean life stage -relationship: starts_at_end_of WBls:0000708 ! cercarium +relationship: RO:0002087 WBls:0000708 ! cercarium created_by: jl16 creation_date: 2016-08-16T07:46:43Z @@ -7611,8 +8848,9 @@ name: Platyhelminthes adult def: "The mature, fully developed life stage of Platyhelminthes, usually capable of sexual reproduction." [WB:jl] synonym: "adult" BROAD [] synonym: "platyhelminth adult" EXACT [] +is_a: BFO:0000003 is_a: WBls:0000704 ! Platyhelminthes life stage -relationship: starts_at_end_of WBls:0000709 ! schistosomulum +relationship: RO:0002087 WBls:0000709 ! schistosomulum created_by: jl16 creation_date: 2016-08-16T07:51:21Z @@ -7651,7 +8889,7 @@ comment: Note that a hydatid cyst is a type of bladder larva, a larval form in w synonym: "hydatid cyst" EXACT [] synonym: "metacestode vesicle" EXACT [] is_a: WBls:0000712 ! Cestoda life stage -relationship: part_of WBls:0000716 ! metacestode +relationship: BFO:0000050 WBls:0000716 ! metacestode created_by: jl16 creation_date: 2016-03-17T14:27:42Z @@ -7662,7 +8900,7 @@ def: "An infective larval stage of cestodes which develops from the hydatid cyst comment: Note that a hydatid cyst is a type of bladder larva, a larval form in which one or more scoleces develop in a fluid-filled cyst. Other types of bladder larva include cysticercus, coenurus and strobilocercus. synonym: "protoscolex" EXACT [] is_a: WBls:0000712 ! Cestoda life stage -relationship: part_of WBls:0000716 ! metacestode +relationship: BFO:0000050 WBls:0000716 ! metacestode created_by: jl16 creation_date: 2016-03-17T14:40:14Z @@ -7680,7 +8918,7 @@ id: WBls:0000717 name: cysticercoid stage def: "A larval stage of some cestodes, including Hymenolepis sp. The cysticercoid is a type of cyst that is found in free form as well as being tissue-enclosed." [WB:jl] is_a: WBls:0000712 ! Cestoda life stage -relationship: part_of WBls:0000716 ! metacestode +relationship: BFO:0000050 WBls:0000716 ! metacestode created_by: jl16 creation_date: 2016-03-18T11:15:07Z @@ -7756,7 +8994,7 @@ def: "A tailless cercarium of Schistosoma sp, 24 hours post-infection by skin pe synonym: "24 hr somule" EXACT [] xref: OPL:0000172 is_a: WBls:0000709 ! schistosomulum -relationship: preceded_by WBls:0000724 ! 3 hr schistosomulum +relationship: BFO:0000062 WBls:0000724 ! 3 hr schistosomulum created_by: jl16 creation_date: 2016-08-16T08:56:23Z @@ -7772,8 +9010,9 @@ creation_date: 2017-06-09T10:23:56Z id: WBls:0000727 name: Onchocerca microfilaria (mammalian stage) def: "The stage that develops from the embyro and is released from the adult female worm, within the mammalian host. Microfilariae are unsheathed and are mainly found in nodules, the skin and connective tissues." [WB:fr] +is_a: BFO:0000003 is_a: WBls:0000726 ! Onchocerca post-embryonic life stage -relationship: starts_at_end_of WBls:0000723 ! Onchocerca embryonic life stage +relationship: RO:0002087 WBls:0000723 ! Onchocerca embryonic life stage created_by: fr7 creation_date: 2017-06-09T10:24:33Z @@ -7781,8 +9020,9 @@ creation_date: 2017-06-09T10:24:33Z id: WBls:0000728 name: Onchocerca microfilaria (vector stage) def: "Microfilariae that have been ingested by the vector in a blood meal from a mammalian host. Found in the midgut and muscles of the insect host." [WB:fr] +is_a: BFO:0000003 is_a: WBls:0000726 ! Onchocerca post-embryonic life stage -relationship: starts_at_end_of WBls:0000727 ! Onchocerca microfilaria (mammalian stage) +relationship: RO:0002087 WBls:0000727 ! Onchocerca microfilaria (mammalian stage) created_by: fr7 creation_date: 2017-06-09T10:28:52Z @@ -7798,8 +9038,9 @@ creation_date: 2017-07-28T14:28:29Z id: WBls:0000730 name: Onchocerca L1 larva def: "L1 larvae that develop from the microfilariae in the arthropod vector." [WB:fr] +is_a: BFO:0000003 is_a: WBls:0000726 ! Onchocerca post-embryonic life stage -relationship: starts_at_end_of WBls:0000728 ! Onchocerca microfilaria (vector stage) +relationship: RO:0002087 WBls:0000728 ! Onchocerca microfilaria (vector stage) created_by: fr7 creation_date: 2017-06-09T10:35:04Z @@ -7807,8 +9048,9 @@ creation_date: 2017-06-09T10:35:04Z id: WBls:0000731 name: Onchocerca L2 larva def: "L2 larvae that develops from the L1 larvae in the arthropod vector." [WB:fr] +is_a: BFO:0000003 is_a: WBls:0000726 ! Onchocerca post-embryonic life stage -relationship: starts_at_end_of WBls:0000730 ! Onchocerca L1 larva +relationship: RO:0002087 WBls:0000730 ! Onchocerca L1 larva created_by: fr7 creation_date: 2017-06-09T10:40:31Z @@ -7816,8 +9058,9 @@ creation_date: 2017-06-09T10:40:31Z id: WBls:0000732 name: Onchocerca L3 larva (vector stage) def: "L3 larvae that develop from the L2 larvae in the arthropod vector. This stage is infectious to the mammalian host once it has migrated to the insect proboscis." [WB:fr] +is_a: BFO:0000003 is_a: WBls:0000726 ! Onchocerca post-embryonic life stage -relationship: starts_at_end_of WBls:0000731 ! Onchocerca L2 larva +relationship: RO:0002087 WBls:0000731 ! Onchocerca L2 larva created_by: fr7 creation_date: 2017-06-09T10:45:40Z @@ -7825,8 +9068,9 @@ creation_date: 2017-06-09T10:45:40Z id: WBls:0000733 name: Onchocerca L3 larva (mammalian stage) def: "L3 larvae after introduction to the mammalian host through the bite wound of the insect vector." [WB:fr] +is_a: BFO:0000003 is_a: WBls:0000726 ! Onchocerca post-embryonic life stage -relationship: starts_at_end_of WBls:0000732 ! Onchocerca L3 larva (vector stage) +relationship: RO:0002087 WBls:0000732 ! Onchocerca L3 larva (vector stage) created_by: fr7 creation_date: 2017-06-09T10:48:52Z @@ -7843,7 +9087,7 @@ id: WBls:0000735 name: Onchocerca L3 larva in vitro cultured D2 def: "L3 larvae isolated from the insect vector and cultured in vitro for 2 days." [WB:fr] is_a: WBls:0000733 ! Onchocerca L3 larva (mammalian stage) -relationship: starts_at_end_of WBls:0000734 ! Onchocerca L3 larva in vitro cultured D1 +relationship: RO:0002087 WBls:0000734 ! Onchocerca L3 larva in vitro cultured D1 created_by: fr7 creation_date: 2017-06-09T10:51:09Z @@ -7852,7 +9096,7 @@ id: WBls:0000736 name: Onchocerca L3 larva in vitro cultured D3 def: "L3 larvae isolated from the insect vector and cultured in vitro for 3 days." [WB:fr] is_a: WBls:0000733 ! Onchocerca L3 larva (mammalian stage) -relationship: starts_at_end_of WBls:0000735 ! Onchocerca L3 larva in vitro cultured D2 +relationship: RO:0002087 WBls:0000735 ! Onchocerca L3 larva in vitro cultured D2 created_by: fr7 creation_date: 2017-06-09T10:53:33Z @@ -7860,8 +9104,9 @@ creation_date: 2017-06-09T10:53:33Z id: WBls:0000737 name: Onchocerca L4 larva def: "L4 larvae that develop from L3 larvae in the mammalian host." [WB:fr] +is_a: BFO:0000003 is_a: WBls:0000726 ! Onchocerca post-embryonic life stage -relationship: starts_at_end_of WBls:0000733 ! Onchocerca L3 larva (mammalian stage) +relationship: RO:0002087 WBls:0000733 ! Onchocerca L3 larva (mammalian stage) created_by: fr7 creation_date: 2017-06-09T10:59:07Z @@ -7877,8 +9122,9 @@ creation_date: 2017-06-09T11:01:46Z id: WBls:0000739 name: Onchocerca adult male def: "Adult male that has developed from L4 larvae in the mammalian host." [WB:fr] +is_a: BFO:0000003 is_a: WBls:0000726 ! Onchocerca post-embryonic life stage -relationship: starts_at_end_of WBls:0000737 ! Onchocerca L4 larva +relationship: RO:0002087 WBls:0000737 ! Onchocerca L4 larva created_by: fr7 creation_date: 2017-06-09T11:02:24Z @@ -7886,8 +9132,9 @@ creation_date: 2017-06-09T11:02:24Z id: WBls:0000740 name: Onchocerca adult female def: "Adult female that has developed from L4 larvae in the mammalian host." [WB:fr] +is_a: BFO:0000003 is_a: WBls:0000726 ! Onchocerca post-embryonic life stage -relationship: starts_at_end_of WBls:0000737 ! Onchocerca L4 larva +relationship: RO:0002087 WBls:0000737 ! Onchocerca L4 larva created_by: fr7 creation_date: 2017-06-09T11:03:10Z @@ -7951,9 +9198,10 @@ id: WBls:0000797 name: 11-days post-L4 adult hermaphrodite Ce def: "At 20 Centigrade: 11-12 days after L4-adult molt. 14-15 days after first cleavage." [WB:dr] synonym: "11-days post-L4 adult hermaphrodite" BROAD [] -is_a: WBls:0000825 ! C. elegans life stage -relationship: part_of WBls:0000057 ! adult hermaphrodite Ce -relationship: starts_at_end_of WBls:0000674 ! 10-days post-L4 adult hermaphrodite Ce +is_a: BFO:0000003 +is_a: WBls:0000816 ! C. elegans life stage occurring during adulthood +relationship: BFO:0000050 WBls:0000057 ! adult hermaphrodite Ce +relationship: RO:0002087 WBls:0000674 ! 10-days post-L4 adult hermaphrodite Ce created_by: danielaraciti creation_date: 2016-10-19T10:13:23Z @@ -7962,9 +9210,10 @@ id: WBls:0000798 name: 12-days post-L4 adult hermaphrodite Ce def: "At 20 Centigrade: 12-13 days after L4-adult molt. 15-16 days after first cleavage." [WB:dr] synonym: "12-days post-L4 adult hermaphrodite" BROAD [] -is_a: WBls:0000825 ! C. elegans life stage -relationship: part_of WBls:0000057 ! adult hermaphrodite Ce -relationship: starts_at_end_of WBls:0000797 ! 11-days post-L4 adult hermaphrodite Ce +is_a: BFO:0000003 +is_a: WBls:0000816 ! C. elegans life stage occurring during adulthood +relationship: BFO:0000050 WBls:0000057 ! adult hermaphrodite Ce +relationship: RO:0002087 WBls:0000797 ! 11-days post-L4 adult hermaphrodite Ce created_by: danielaraciti creation_date: 2016-10-19T10:13:47Z @@ -7973,9 +9222,10 @@ id: WBls:0000799 name: 13-days post-L4 adult hermaphrodite Ce def: "At 20 Centigrade: 13-14 days after L4-adult molt. 16-17 days after first cleavage." [WB:dr] synonym: "13-days post-L4 adult hermaphrodite" BROAD [] -is_a: WBls:0000825 ! C. elegans life stage -relationship: part_of WBls:0000057 ! adult hermaphrodite Ce -relationship: starts_at_end_of WBls:0000798 ! 12-days post-L4 adult hermaphrodite Ce +is_a: BFO:0000003 +is_a: WBls:0000816 ! C. elegans life stage occurring during adulthood +relationship: BFO:0000050 WBls:0000057 ! adult hermaphrodite Ce +relationship: RO:0002087 WBls:0000798 ! 12-days post-L4 adult hermaphrodite Ce created_by: danielaraciti creation_date: 2016-10-19T10:14:11Z @@ -7984,9 +9234,10 @@ id: WBls:0000800 name: 14-days post-L4 adult hermaphrodite Ce def: "At 20 Centigrade: 14-15 days after L4-adult molt. 17-18 days after first cleavage." [WB:dr] synonym: "14-days post-L4 adult hermaphrodite" BROAD [] -is_a: WBls:0000825 ! C. elegans life stage -relationship: part_of WBls:0000057 ! adult hermaphrodite Ce -relationship: starts_at_end_of WBls:0000799 ! 13-days post-L4 adult hermaphrodite Ce +is_a: BFO:0000003 +is_a: WBls:0000816 ! C. elegans life stage occurring during adulthood +relationship: BFO:0000050 WBls:0000057 ! adult hermaphrodite Ce +relationship: RO:0002087 WBls:0000799 ! 13-days post-L4 adult hermaphrodite Ce created_by: danielaraciti creation_date: 2016-10-19T10:14:40Z @@ -7994,9 +9245,10 @@ creation_date: 2016-10-19T10:14:40Z id: WBls:0000801 name: newly hatched L1 larval stage Ce def: "The stage that begins right after hatching and before development proceeds after feeding. A newly hatched L1 larva contains 558 cells." [PMC:4492366, WA:Wormatlas, WB:dr] -is_a: WBls:0000825 ! C. elegans life stage -relationship: part_of WBls:0000024 ! L1 larva Ce -relationship: preceded_by WBls:0000021 ! fully-elongated embryo Ce +is_a: BFO:0000003 +is_a: WBls:0000818 ! C. elegans life stage occurring during L1 larval stage +relationship: BFO:0000050 WBls:0000024 ! L1 larva Ce +relationship: BFO:0000062 WBls:0000021 ! fully-elongated embryo Ce created_by: danielaraciti creation_date: 2017-11-14T10:14:40Z @@ -8005,8 +9257,9 @@ id: WBls:0000802 name: L1 arrest Ce def: "The stage in which first stage larvae (L1) that hatch in the absence of food enter a state of developmental arrest." [PMC:3697962, WB:dr] synonym: "L1 diapause" EXACT [] -is_a: WBls:0000825 ! C. elegans life stage -relationship: part_of WBls:0000801 ! newly hatched L1 larval stage Ce +is_a: BFO:0000003 +is_a: WBls:0000818 ! C. elegans life stage occurring during L1 larval stage +relationship: BFO:0000050 WBls:0000801 ! newly hatched L1 larval stage Ce created_by: danielaraciti creation_date: 2017-11-14T10:15:40Z @@ -8158,16 +9411,18 @@ is_obsolete: true id: WBls:0000827 name: post dauer stage Ce def: "A C. elegans life stage that occurs after the animal has recovered from the dauer diapause. This includes the post dauer L3 (PDL3) stage, the post dauer L4 (PDL4) stage, and post dauer adult stage." [PMID:27417559, WB:WBPerson2987] -is_a: WBls:0000825 ! C. elegans life stage -relationship: part_of WBls:0000022 ! postembryonic Ce +is_a: BFO:0000003 +is_a: WBls:0000804 ! C. elegans life stage occurring post embryogenesis +relationship: BFO:0000050 WBls:0000022 ! postembryonic Ce [Term] id: WBls:0000828 name: post dauer L4 stage Ce def: "A C. elegans L4 larval life stage that occurs after the animal has recovered from the dauer diapause." [PMID:27417559, WB:WBPerson2987] synonym: "PDL4" EXACT [] +is_a: WBls:0000817 ! C. elegans life stage occurring during larval stage is_a: WBls:0000827 ! post dauer stage Ce -relationship: part_of WBls:0000023 ! larva Ce +relationship: BFO:0000050 WBls:0000023 ! larva Ce property_value: isDefinedBy "\"Larvae molt from PDL3 to the PDL4 stage approximately 16 hours after stimulation to recover from dauer at 20 degrees Celsius, or 12 hours after stimulation to recover at 25 degrees Celsius (Figure 3) (Cassada and Russell, 1975; Reape and Burnell,1990). PDL4 larvae are morphologically indistinguishable from L4 larvae, at least at the gross level. Similarly, PDadults appear identical to adults that developed continuously. However, subtle differences do exist. For example,some changes in muscle arm and neuronal cell structure persist in post-dauer stages (Dixon et al., 2008; Schroeder et al., 2013). Interestingly, this apparent similarity between post-dauer and continuously developed animals belies a number of changes at the level of expression of protein coding and small RNA coding genes, as well as changes in chromatin structure (Hall et al., 2010; Karp et al., 2011; Hall et al., 2013).\"" xsd:string {xref="PMID:27417559"} [Term] @@ -8177,21 +9432,3 @@ def: "A C. elegans adult life stage that occurs after the animal has recovered f is_a: WBls:0000041 ! adult Ce is_a: WBls:0000827 ! post dauer stage Ce -[Typedef] -id: part_of -name: part_of -xref: BFO:0000050 -is_transitive: true - -[Typedef] -id: preceded_by -name: preceded_by -xref: BFO:0000062 -is_transitive: true - -[Typedef] -id: starts_at_end_of -name: starts_at_end_of -xref: RO:0002087 -is_a: preceded_by ! preceded_by - diff --git a/wbls-base.owl b/wbls-base.owl index f06a827..fd175f5 100644 --- a/wbls-base.owl +++ b/wbls-base.owl @@ -12,7 +12,7 @@ xmlns:dcterms="http://purl.org/dc/terms/" xmlns:oboInOwl="http://www.geneontology.org/formats/oboInOwl#"> - + Ontology about the development and life stages of the C. elegans C. elegans Development Ontology @@ -25,7 +25,7 @@ chris-grove Editors: Wen J. Chen & Daniela Raciti, Raymond Lee, Chris Grove, WormBase, Caltech. Jane Lomax, Wellcome Trust Sanger Institute. Version: 1.04 - 2024-01-16 + 2024-04-09 @@ -43,9 +43,7 @@ - - definition - + @@ -123,65 +121,49 @@ - - has_alternative_id - + - - has_broad_synonym - + - - database_cross_reference - + - - has_exact_synonym - + - - has_narrow_synonym - + - - has_obo_format_version - + - - has_obo_namespace - + - - has_related_synonym - + @@ -197,32 +179,6 @@ - - - - shorthand - - - - - - - - - - - - - - - - - - - - - - - - - BFO:0000050 - worm_development - part_of - part_of - part_of - + - - - BFO:0000062 - worm_development - preceded_by - preceded_by - preceded_by - + - - - RO:0002087 - worm_development - starts_at_end_of - starts_at_end_of - starts_at_end_of - + @@ -284,6 +219,12 @@ + + + + + + @@ -327,7 +268,7 @@ - + The whole period of embryogenesis in the nematode Caenorhabditis elegans, from the formation of an egg until hatching. embryo worm_development @@ -347,7 +288,7 @@ - + @@ -373,7 +314,7 @@ - + @@ -398,6 +339,8 @@ + + @@ -436,6 +379,8 @@ + + @@ -467,6 +412,8 @@ + + @@ -498,6 +445,8 @@ + + @@ -523,7 +472,8 @@ - + + @@ -554,6 +504,8 @@ + + @@ -585,6 +537,8 @@ + + @@ -616,7 +570,8 @@ - + + @@ -653,7 +608,8 @@ - + + @@ -684,7 +640,8 @@ - + + @@ -722,7 +679,8 @@ - + + @@ -759,7 +717,8 @@ - + + @@ -790,7 +749,8 @@ - + + @@ -821,7 +781,8 @@ - + + @@ -852,7 +813,8 @@ - + + @@ -883,7 +845,8 @@ - + + @@ -923,7 +886,8 @@ - + + @@ -949,8 +913,9 @@ + - + @@ -982,8 +947,9 @@ + - + @@ -1014,6 +980,7 @@ + @@ -1039,6 +1006,7 @@ + @@ -1071,7 +1039,7 @@ - + @@ -1108,6 +1076,7 @@ + @@ -1133,6 +1102,7 @@ + @@ -1164,6 +1134,7 @@ + @@ -1189,6 +1160,7 @@ + @@ -1214,7 +1186,8 @@ - + + @@ -1245,6 +1218,7 @@ + @@ -1270,6 +1244,7 @@ + @@ -1296,7 +1271,7 @@ - + @@ -1333,6 +1308,7 @@ + @@ -1358,6 +1334,7 @@ + @@ -1390,7 +1367,7 @@ - + @@ -1433,6 +1410,7 @@ + @@ -1458,6 +1436,7 @@ + @@ -1484,7 +1463,7 @@ - + @@ -1527,6 +1506,7 @@ + @@ -1558,6 +1538,7 @@ + @@ -1583,6 +1564,7 @@ + @@ -1608,6 +1590,7 @@ + @@ -1633,7 +1616,8 @@ - + + @@ -1658,6 +1642,7 @@ + @@ -1689,6 +1674,7 @@ + @@ -1714,6 +1700,7 @@ + @@ -1745,6 +1732,7 @@ + @@ -1775,6 +1763,7 @@ + @@ -1800,6 +1789,7 @@ + @@ -1834,6 +1824,7 @@ + @@ -1859,6 +1850,7 @@ + @@ -1884,6 +1876,7 @@ + @@ -1947,7 +1940,8 @@ - + + @@ -1992,7 +1986,8 @@ - + + @@ -2017,7 +2012,8 @@ - + + @@ -2042,7 +2038,8 @@ - + + @@ -2067,7 +2064,8 @@ - + + @@ -2092,7 +2090,8 @@ - + + @@ -2117,7 +2116,8 @@ - + + @@ -2148,7 +2148,8 @@ - + + @@ -2179,7 +2180,8 @@ - + + @@ -2210,7 +2212,8 @@ - + + @@ -2241,7 +2244,8 @@ - + + @@ -2272,7 +2276,8 @@ - + + @@ -2303,6 +2308,8 @@ + + @@ -2334,6 +2341,8 @@ + + @@ -2384,7 +2393,8 @@ - + + @@ -2499,6 +2509,7 @@ + @@ -2674,6 +2685,8 @@ + + @@ -2709,6 +2722,8 @@ + + @@ -2744,6 +2759,8 @@ + + @@ -2779,6 +2796,8 @@ + + @@ -2814,6 +2833,8 @@ + + @@ -2849,6 +2870,8 @@ + + @@ -2882,6 +2905,8 @@ + + @@ -2962,6 +2987,7 @@ + @@ -3020,6 +3046,7 @@ + @@ -3055,6 +3082,7 @@ + @@ -3090,6 +3118,7 @@ + @@ -3152,6 +3181,7 @@ + @@ -3182,6 +3212,7 @@ + @@ -3263,6 +3294,7 @@ + @@ -3290,6 +3322,7 @@ + @@ -3362,6 +3395,7 @@ + @@ -3389,6 +3423,7 @@ + @@ -3416,6 +3451,7 @@ + @@ -3466,7 +3502,8 @@ - + + @@ -3504,6 +3541,7 @@ + @@ -3532,6 +3570,8 @@ + + @@ -3566,6 +3606,8 @@ + + @@ -3600,6 +3642,8 @@ + + @@ -3634,6 +3678,8 @@ + + @@ -3668,6 +3714,8 @@ + + @@ -3702,6 +3750,8 @@ + + @@ -3736,6 +3786,8 @@ + + @@ -3770,6 +3822,8 @@ + + @@ -3804,6 +3858,8 @@ + + @@ -3838,6 +3894,8 @@ + + @@ -3872,6 +3930,8 @@ + + @@ -3906,6 +3966,8 @@ + + @@ -3940,6 +4002,8 @@ + + @@ -3974,6 +4038,8 @@ + + @@ -4008,6 +4074,8 @@ + + @@ -4042,6 +4110,8 @@ + + @@ -4076,6 +4146,8 @@ + + @@ -4110,6 +4182,8 @@ + + @@ -4144,6 +4218,8 @@ + + @@ -4178,6 +4254,8 @@ + + @@ -4212,6 +4290,8 @@ + + @@ -4246,6 +4326,8 @@ + + @@ -4280,6 +4362,8 @@ + + @@ -4314,6 +4398,8 @@ + + @@ -4348,6 +4434,8 @@ + + @@ -4382,6 +4470,8 @@ + + @@ -4416,6 +4506,8 @@ + + @@ -4450,6 +4542,8 @@ + + @@ -4484,6 +4578,8 @@ + + @@ -4518,6 +4614,8 @@ + + @@ -4552,6 +4650,8 @@ + + @@ -4586,6 +4686,8 @@ + + @@ -4620,6 +4722,8 @@ + + @@ -4654,6 +4758,8 @@ + + @@ -4688,6 +4794,8 @@ + + @@ -4722,6 +4830,8 @@ + + @@ -4756,6 +4866,8 @@ + + @@ -4790,6 +4902,8 @@ + + @@ -4824,6 +4938,8 @@ + + @@ -4858,6 +4974,8 @@ + + @@ -4892,6 +5010,8 @@ + + @@ -4926,6 +5046,8 @@ + + @@ -4960,6 +5082,8 @@ + + @@ -4994,6 +5118,8 @@ + + @@ -5028,6 +5154,8 @@ + + @@ -5062,6 +5190,8 @@ + + @@ -5096,6 +5226,8 @@ + + @@ -5130,6 +5262,8 @@ + + @@ -5164,6 +5298,8 @@ + + @@ -5198,6 +5334,8 @@ + + @@ -5232,6 +5370,8 @@ + + @@ -5266,6 +5406,8 @@ + + @@ -5300,6 +5442,8 @@ + + @@ -5334,6 +5478,8 @@ + + @@ -5368,6 +5514,8 @@ + + @@ -5402,6 +5550,8 @@ + + @@ -5436,6 +5586,8 @@ + + @@ -5470,6 +5622,8 @@ + + @@ -5504,6 +5658,8 @@ + + @@ -5538,6 +5694,8 @@ + + @@ -5572,6 +5730,8 @@ + + @@ -5606,6 +5766,8 @@ + + @@ -5640,6 +5802,8 @@ + + @@ -5674,6 +5838,8 @@ + + @@ -5708,6 +5874,8 @@ + + @@ -5742,6 +5910,8 @@ + + @@ -5776,6 +5946,8 @@ + + @@ -5810,6 +5982,8 @@ + + @@ -5844,6 +6018,8 @@ + + @@ -5878,6 +6054,8 @@ + + @@ -5912,6 +6090,8 @@ + + @@ -5946,6 +6126,8 @@ + + @@ -5980,6 +6162,8 @@ + + @@ -6014,6 +6198,8 @@ + + @@ -6048,6 +6234,8 @@ + + @@ -6082,6 +6270,8 @@ + + @@ -6116,6 +6306,8 @@ + + @@ -6150,6 +6342,8 @@ + + @@ -6184,6 +6378,8 @@ + + @@ -6218,6 +6414,8 @@ + + @@ -6252,6 +6450,8 @@ + + @@ -6286,6 +6486,8 @@ + + @@ -6320,6 +6522,8 @@ + + @@ -6354,6 +6558,8 @@ + + @@ -6388,6 +6594,8 @@ + + @@ -6422,6 +6630,8 @@ + + @@ -6456,6 +6666,8 @@ + + @@ -6490,6 +6702,8 @@ + + @@ -6524,6 +6738,8 @@ + + @@ -6558,6 +6774,8 @@ + + @@ -6592,6 +6810,8 @@ + + @@ -6626,6 +6846,8 @@ + + @@ -6660,6 +6882,8 @@ + + @@ -6694,6 +6918,8 @@ + + @@ -6728,6 +6954,8 @@ + + @@ -6762,6 +6990,8 @@ + + @@ -6796,6 +7026,8 @@ + + @@ -6830,6 +7062,8 @@ + + @@ -6864,6 +7098,8 @@ + + @@ -6898,6 +7134,8 @@ + + @@ -6932,6 +7170,8 @@ + + @@ -6966,6 +7206,8 @@ + + @@ -7000,6 +7242,8 @@ + + @@ -7034,6 +7278,8 @@ + + @@ -7068,6 +7314,8 @@ + + @@ -7102,6 +7350,8 @@ + + @@ -7136,6 +7386,8 @@ + + @@ -7170,6 +7422,8 @@ + + @@ -7204,6 +7458,8 @@ + + @@ -7238,6 +7494,8 @@ + + @@ -7272,6 +7530,8 @@ + + @@ -7306,6 +7566,8 @@ + + @@ -7340,6 +7602,8 @@ + + @@ -7374,6 +7638,8 @@ + + @@ -7408,6 +7674,8 @@ + + @@ -7442,6 +7710,8 @@ + + @@ -7476,6 +7746,8 @@ + + @@ -7510,6 +7782,8 @@ + + @@ -7544,6 +7818,8 @@ + + @@ -7578,6 +7854,8 @@ + + @@ -7612,6 +7890,8 @@ + + @@ -7646,6 +7926,8 @@ + + @@ -7680,6 +7962,8 @@ + + @@ -7714,6 +7998,8 @@ + + @@ -7748,6 +8034,8 @@ + + @@ -7782,6 +8070,8 @@ + + @@ -7816,6 +8106,8 @@ + + @@ -7850,6 +8142,8 @@ + + @@ -7884,6 +8178,8 @@ + + @@ -7918,6 +8214,8 @@ + + @@ -7952,6 +8250,8 @@ + + @@ -7986,6 +8286,8 @@ + + @@ -8020,6 +8322,8 @@ + + @@ -8054,6 +8358,8 @@ + + @@ -8088,6 +8394,8 @@ + + @@ -8122,6 +8430,8 @@ + + @@ -8156,6 +8466,8 @@ + + @@ -8190,6 +8502,8 @@ + + @@ -8224,6 +8538,8 @@ + + @@ -8258,6 +8574,8 @@ + + @@ -8292,6 +8610,8 @@ + + @@ -8326,6 +8646,8 @@ + + @@ -8360,6 +8682,8 @@ + + @@ -8394,6 +8718,8 @@ + + @@ -8428,6 +8754,8 @@ + + @@ -8462,6 +8790,8 @@ + + @@ -8496,6 +8826,8 @@ + + @@ -8530,6 +8862,8 @@ + + @@ -8564,6 +8898,8 @@ + + @@ -8598,6 +8934,8 @@ + + @@ -8632,6 +8970,8 @@ + + @@ -8666,6 +9006,8 @@ + + @@ -8700,6 +9042,8 @@ + + @@ -8734,6 +9078,8 @@ + + @@ -8768,6 +9114,8 @@ + + @@ -8802,6 +9150,8 @@ + + @@ -8836,6 +9186,8 @@ + + @@ -8870,6 +9222,8 @@ + + @@ -8904,6 +9258,8 @@ + + @@ -8938,6 +9294,8 @@ + + @@ -8972,6 +9330,8 @@ + + @@ -9006,6 +9366,8 @@ + + @@ -9040,6 +9402,8 @@ + + @@ -9074,6 +9438,8 @@ + + @@ -9108,6 +9474,8 @@ + + @@ -9142,6 +9510,8 @@ + + @@ -9176,6 +9546,8 @@ + + @@ -9210,6 +9582,8 @@ + + @@ -9244,6 +9618,8 @@ + + @@ -9278,6 +9654,8 @@ + + @@ -9312,6 +9690,8 @@ + + @@ -9346,6 +9726,8 @@ + + @@ -9380,6 +9762,8 @@ + + @@ -9414,6 +9798,8 @@ + + @@ -9448,6 +9834,8 @@ + + @@ -9482,6 +9870,8 @@ + + @@ -9516,6 +9906,8 @@ + + @@ -9550,6 +9942,8 @@ + + @@ -9584,6 +9978,8 @@ + + @@ -9618,6 +10014,8 @@ + + @@ -9652,6 +10050,8 @@ + + @@ -9686,6 +10086,8 @@ + + @@ -9720,6 +10122,8 @@ + + @@ -9754,6 +10158,8 @@ + + @@ -9788,6 +10194,8 @@ + + @@ -9822,6 +10230,8 @@ + + @@ -9856,6 +10266,8 @@ + + @@ -9890,6 +10302,8 @@ + + @@ -9924,6 +10338,8 @@ + + @@ -9958,6 +10374,8 @@ + + @@ -9992,6 +10410,8 @@ + + @@ -10026,6 +10446,8 @@ + + @@ -10060,6 +10482,8 @@ + + @@ -10094,6 +10518,8 @@ + + @@ -10128,6 +10554,8 @@ + + @@ -10162,6 +10590,8 @@ + + @@ -10196,6 +10626,8 @@ + + @@ -10230,6 +10662,8 @@ + + @@ -10264,6 +10698,8 @@ + + @@ -10298,6 +10734,8 @@ + + @@ -10332,6 +10770,8 @@ + + @@ -10366,6 +10806,8 @@ + + @@ -10400,6 +10842,8 @@ + + @@ -10434,6 +10878,8 @@ + + @@ -10468,6 +10914,8 @@ + + @@ -10502,6 +10950,8 @@ + + @@ -10536,6 +10986,8 @@ + + @@ -10570,6 +11022,8 @@ + + @@ -10604,6 +11058,8 @@ + + @@ -10638,6 +11094,8 @@ + + @@ -10672,6 +11130,8 @@ + + @@ -10706,6 +11166,8 @@ + + @@ -10740,6 +11202,8 @@ + + @@ -10774,6 +11238,8 @@ + + @@ -10808,6 +11274,8 @@ + + @@ -10842,6 +11310,8 @@ + + @@ -10876,6 +11346,8 @@ + + @@ -10910,6 +11382,8 @@ + + @@ -10944,6 +11418,8 @@ + + @@ -10978,6 +11454,8 @@ + + @@ -11012,6 +11490,8 @@ + + @@ -11046,6 +11526,8 @@ + + @@ -11080,6 +11562,8 @@ + + @@ -11114,6 +11598,8 @@ + + @@ -11148,6 +11634,8 @@ + + @@ -11182,6 +11670,8 @@ + + @@ -11216,6 +11706,8 @@ + + @@ -11250,6 +11742,8 @@ + + @@ -11284,6 +11778,8 @@ + + @@ -11318,6 +11814,8 @@ + + @@ -11352,6 +11850,8 @@ + + @@ -11386,6 +11886,8 @@ + + @@ -11420,6 +11922,8 @@ + + @@ -11454,6 +11958,8 @@ + + @@ -11488,6 +11994,8 @@ + + @@ -11522,6 +12030,8 @@ + + @@ -11556,6 +12066,8 @@ + + @@ -11590,6 +12102,8 @@ + + @@ -11624,6 +12138,8 @@ + + @@ -11658,6 +12174,8 @@ + + @@ -11692,6 +12210,8 @@ + + @@ -11726,6 +12246,8 @@ + + @@ -11760,6 +12282,8 @@ + + @@ -11794,6 +12318,8 @@ + + @@ -11828,6 +12354,8 @@ + + @@ -11862,6 +12390,8 @@ + + @@ -11896,6 +12426,8 @@ + + @@ -11930,6 +12462,8 @@ + + @@ -11964,6 +12498,8 @@ + + @@ -11998,6 +12534,8 @@ + + @@ -12032,6 +12570,8 @@ + + @@ -12066,6 +12606,8 @@ + + @@ -12100,6 +12642,8 @@ + + @@ -12134,6 +12678,8 @@ + + @@ -12168,6 +12714,8 @@ + + @@ -12202,6 +12750,8 @@ + + @@ -12236,6 +12786,8 @@ + + @@ -12270,6 +12822,8 @@ + + @@ -12304,6 +12858,8 @@ + + @@ -12338,6 +12894,8 @@ + + @@ -12372,6 +12930,8 @@ + + @@ -12406,6 +12966,8 @@ + + @@ -12440,6 +13002,8 @@ + + @@ -12474,6 +13038,8 @@ + + @@ -12508,6 +13074,8 @@ + + @@ -12542,6 +13110,8 @@ + + @@ -12576,6 +13146,8 @@ + + @@ -12610,6 +13182,8 @@ + + @@ -12644,6 +13218,8 @@ + + @@ -12678,6 +13254,8 @@ + + @@ -12712,6 +13290,8 @@ + + @@ -12746,6 +13326,8 @@ + + @@ -12780,6 +13362,8 @@ + + @@ -12814,6 +13398,8 @@ + + @@ -12848,6 +13434,8 @@ + + @@ -12882,6 +13470,8 @@ + + @@ -12916,6 +13506,8 @@ + + @@ -12950,6 +13542,8 @@ + + @@ -12984,6 +13578,8 @@ + + @@ -13018,6 +13614,8 @@ + + @@ -13052,6 +13650,8 @@ + + @@ -13086,6 +13686,8 @@ + + @@ -13120,6 +13722,8 @@ + + @@ -13154,6 +13758,8 @@ + + @@ -13188,6 +13794,8 @@ + + @@ -13222,6 +13830,8 @@ + + @@ -13256,6 +13866,8 @@ + + @@ -13290,6 +13902,8 @@ + + @@ -13324,6 +13938,8 @@ + + @@ -13358,6 +13974,8 @@ + + @@ -13392,6 +14010,8 @@ + + @@ -13426,6 +14046,8 @@ + + @@ -13460,6 +14082,8 @@ + + @@ -13494,6 +14118,8 @@ + + @@ -13528,6 +14154,8 @@ + + @@ -13562,6 +14190,8 @@ + + @@ -13596,6 +14226,8 @@ + + @@ -13630,6 +14262,8 @@ + + @@ -13664,6 +14298,8 @@ + + @@ -13698,6 +14334,8 @@ + + @@ -13732,6 +14370,8 @@ + + @@ -13766,6 +14406,8 @@ + + @@ -13800,6 +14442,8 @@ + + @@ -13834,6 +14478,8 @@ + + @@ -13868,6 +14514,8 @@ + + @@ -13902,6 +14550,8 @@ + + @@ -13936,6 +14586,8 @@ + + @@ -13970,6 +14622,8 @@ + + @@ -14004,6 +14658,8 @@ + + @@ -14038,6 +14694,8 @@ + + @@ -14072,6 +14730,8 @@ + + @@ -14106,6 +14766,8 @@ + + @@ -14140,6 +14802,8 @@ + + @@ -14174,6 +14838,8 @@ + + @@ -14208,6 +14874,8 @@ + + @@ -14242,6 +14910,8 @@ + + @@ -14276,6 +14946,8 @@ + + @@ -14310,6 +14982,8 @@ + + @@ -14344,6 +15018,8 @@ + + @@ -14378,6 +15054,8 @@ + + @@ -14412,6 +15090,8 @@ + + @@ -14446,6 +15126,8 @@ + + @@ -14480,6 +15162,8 @@ + + @@ -14514,6 +15198,8 @@ + + @@ -14548,6 +15234,8 @@ + + @@ -14582,6 +15270,8 @@ + + @@ -14616,6 +15306,8 @@ + + @@ -14650,6 +15342,8 @@ + + @@ -14684,6 +15378,8 @@ + + @@ -14718,6 +15414,8 @@ + + @@ -14752,6 +15450,8 @@ + + @@ -14786,6 +15486,8 @@ + + @@ -14820,6 +15522,8 @@ + + @@ -14854,6 +15558,8 @@ + + @@ -14888,6 +15594,8 @@ + + @@ -14922,6 +15630,8 @@ + + @@ -14956,6 +15666,8 @@ + + @@ -14990,6 +15702,8 @@ + + @@ -15024,6 +15738,8 @@ + + @@ -15058,6 +15774,8 @@ + + @@ -15092,6 +15810,8 @@ + + @@ -15126,6 +15846,8 @@ + + @@ -15160,6 +15882,8 @@ + + @@ -15194,6 +15918,8 @@ + + @@ -15228,6 +15954,8 @@ + + @@ -15262,6 +15990,8 @@ + + @@ -15296,6 +16026,8 @@ + + @@ -15330,6 +16062,8 @@ + + @@ -15364,6 +16098,8 @@ + + @@ -15398,6 +16134,8 @@ + + @@ -15432,6 +16170,8 @@ + + @@ -15466,6 +16206,8 @@ + + @@ -15500,6 +16242,8 @@ + + @@ -15534,6 +16278,8 @@ + + @@ -15568,6 +16314,8 @@ + + @@ -15602,6 +16350,8 @@ + + @@ -15636,6 +16386,8 @@ + + @@ -15670,6 +16422,8 @@ + + @@ -15704,6 +16458,8 @@ + + @@ -15738,6 +16494,8 @@ + + @@ -15772,6 +16530,8 @@ + + @@ -15806,6 +16566,8 @@ + + @@ -15840,6 +16602,8 @@ + + @@ -15874,6 +16638,8 @@ + + @@ -15908,6 +16674,8 @@ + + @@ -15942,6 +16710,8 @@ + + @@ -15976,6 +16746,8 @@ + + @@ -16010,6 +16782,8 @@ + + @@ -16044,6 +16818,8 @@ + + @@ -16078,6 +16854,8 @@ + + @@ -16112,6 +16890,8 @@ + + @@ -16146,6 +16926,8 @@ + + @@ -16180,6 +16962,8 @@ + + @@ -16214,6 +16998,8 @@ + + @@ -16248,6 +17034,8 @@ + + @@ -16282,6 +17070,8 @@ + + @@ -16316,6 +17106,8 @@ + + @@ -16350,6 +17142,8 @@ + + @@ -16384,6 +17178,8 @@ + + @@ -16418,6 +17214,8 @@ + + @@ -16452,6 +17250,8 @@ + + @@ -16486,6 +17286,8 @@ + + @@ -16520,6 +17322,8 @@ + + @@ -16554,6 +17358,8 @@ + + @@ -16588,6 +17394,8 @@ + + @@ -16622,6 +17430,8 @@ + + @@ -16656,6 +17466,8 @@ + + @@ -16690,6 +17502,8 @@ + + @@ -16724,6 +17538,8 @@ + + @@ -16758,6 +17574,8 @@ + + @@ -16792,6 +17610,8 @@ + + @@ -16826,6 +17646,8 @@ + + @@ -16860,6 +17682,8 @@ + + @@ -16894,6 +17718,8 @@ + + @@ -16928,6 +17754,8 @@ + + @@ -16962,6 +17790,8 @@ + + @@ -16996,6 +17826,8 @@ + + @@ -17030,6 +17862,8 @@ + + @@ -17064,6 +17898,8 @@ + + @@ -17098,6 +17934,8 @@ + + @@ -17132,6 +17970,8 @@ + + @@ -17166,6 +18006,8 @@ + + @@ -17200,6 +18042,8 @@ + + @@ -17234,6 +18078,8 @@ + + @@ -17268,6 +18114,8 @@ + + @@ -17302,6 +18150,8 @@ + + @@ -17336,6 +18186,8 @@ + + @@ -17370,6 +18222,8 @@ + + @@ -17404,6 +18258,8 @@ + + @@ -17438,6 +18294,8 @@ + + @@ -17472,6 +18330,8 @@ + + @@ -17506,6 +18366,8 @@ + + @@ -17540,6 +18402,8 @@ + + @@ -17574,6 +18438,8 @@ + + @@ -17608,6 +18474,8 @@ + + @@ -17642,6 +18510,8 @@ + + @@ -17676,6 +18546,8 @@ + + @@ -17710,6 +18582,8 @@ + + @@ -17744,6 +18618,8 @@ + + @@ -17778,6 +18654,8 @@ + + @@ -17812,6 +18690,8 @@ + + @@ -17846,6 +18726,8 @@ + + @@ -17880,6 +18762,8 @@ + + @@ -17914,6 +18798,8 @@ + + @@ -17948,6 +18834,8 @@ + + @@ -17982,6 +18870,8 @@ + + @@ -18016,6 +18906,8 @@ + + @@ -18050,6 +18942,8 @@ + + @@ -18084,6 +18978,8 @@ + + @@ -18118,6 +19014,8 @@ + + @@ -18152,6 +19050,8 @@ + + @@ -18186,6 +19086,8 @@ + + @@ -18220,6 +19122,8 @@ + + @@ -18254,6 +19158,8 @@ + + @@ -18288,6 +19194,8 @@ + + @@ -18322,6 +19230,8 @@ + + @@ -18356,6 +19266,8 @@ + + @@ -18390,6 +19302,8 @@ + + @@ -18424,6 +19338,8 @@ + + @@ -18458,6 +19374,8 @@ + + @@ -18492,6 +19410,8 @@ + + @@ -18526,6 +19446,8 @@ + + @@ -18560,6 +19482,8 @@ + + @@ -18594,6 +19518,8 @@ + + @@ -18628,6 +19554,8 @@ + + @@ -18662,6 +19590,8 @@ + + @@ -18696,6 +19626,8 @@ + + @@ -18730,6 +19662,8 @@ + + @@ -18764,6 +19698,8 @@ + + @@ -18798,6 +19734,8 @@ + + @@ -18832,6 +19770,8 @@ + + @@ -18866,6 +19806,8 @@ + + @@ -18900,6 +19842,8 @@ + + @@ -18934,6 +19878,8 @@ + + @@ -18968,6 +19914,8 @@ + + @@ -19002,6 +19950,8 @@ + + @@ -19036,6 +19986,8 @@ + + @@ -19070,6 +20022,8 @@ + + @@ -19104,6 +20058,8 @@ + + @@ -19138,6 +20094,8 @@ + + @@ -19172,6 +20130,8 @@ + + @@ -19206,6 +20166,8 @@ + + @@ -19240,6 +20202,8 @@ + + @@ -19274,6 +20238,8 @@ + + @@ -19308,6 +20274,8 @@ + + @@ -19342,6 +20310,8 @@ + + @@ -19376,6 +20346,8 @@ + + @@ -19410,6 +20382,8 @@ + + @@ -19444,6 +20418,8 @@ + + @@ -19478,6 +20454,8 @@ + + @@ -19512,6 +20490,8 @@ + + @@ -19546,6 +20526,8 @@ + + @@ -19580,6 +20562,8 @@ + + @@ -19614,6 +20598,8 @@ + + @@ -19648,6 +20634,8 @@ + + @@ -19682,6 +20670,8 @@ + + @@ -19716,6 +20706,8 @@ + + @@ -19750,6 +20742,8 @@ + + @@ -19784,6 +20778,8 @@ + + @@ -19818,6 +20814,8 @@ + + @@ -19852,6 +20850,8 @@ + + @@ -19886,6 +20886,8 @@ + + @@ -19920,6 +20922,8 @@ + + @@ -19954,6 +20958,8 @@ + + @@ -19988,6 +20994,8 @@ + + @@ -20022,6 +21030,8 @@ + + @@ -20056,6 +21066,8 @@ + + @@ -20090,6 +21102,8 @@ + + @@ -20124,6 +21138,8 @@ + + @@ -20158,6 +21174,8 @@ + + @@ -20192,6 +21210,8 @@ + + @@ -20226,6 +21246,8 @@ + + @@ -20260,6 +21282,8 @@ + + @@ -20294,6 +21318,8 @@ + + @@ -20328,6 +21354,8 @@ + + @@ -20362,6 +21390,8 @@ + + @@ -20396,6 +21426,8 @@ + + @@ -20430,6 +21462,8 @@ + + @@ -20464,6 +21498,8 @@ + + @@ -20498,6 +21534,8 @@ + + @@ -20532,6 +21570,8 @@ + + @@ -20566,6 +21606,8 @@ + + @@ -20600,6 +21642,8 @@ + + @@ -20634,6 +21678,8 @@ + + @@ -20668,6 +21714,8 @@ + + @@ -20702,6 +21750,8 @@ + + @@ -20736,6 +21786,8 @@ + + @@ -20770,6 +21822,8 @@ + + @@ -20804,6 +21858,8 @@ + + @@ -20838,6 +21894,8 @@ + + @@ -20872,6 +21930,8 @@ + + @@ -20906,6 +21966,8 @@ + + @@ -20940,6 +22002,8 @@ + + @@ -20974,6 +22038,8 @@ + + @@ -21008,6 +22074,8 @@ + + @@ -21042,6 +22110,8 @@ + + @@ -21076,6 +22146,8 @@ + + @@ -21110,6 +22182,8 @@ + + @@ -21144,6 +22218,8 @@ + + @@ -21178,6 +22254,8 @@ + + @@ -21212,6 +22290,8 @@ + + @@ -21246,6 +22326,8 @@ + + @@ -21280,6 +22362,8 @@ + + @@ -21314,6 +22398,8 @@ + + @@ -21348,6 +22434,8 @@ + + @@ -21382,6 +22470,8 @@ + + @@ -21416,6 +22506,8 @@ + + @@ -21450,6 +22542,8 @@ + + @@ -21484,6 +22578,8 @@ + + @@ -21518,6 +22614,8 @@ + + @@ -21552,6 +22650,8 @@ + + @@ -21586,6 +22686,8 @@ + + @@ -21620,6 +22722,8 @@ + + @@ -21654,6 +22758,8 @@ + + @@ -21688,6 +22794,8 @@ + + @@ -21722,6 +22830,8 @@ + + @@ -21756,6 +22866,8 @@ + + @@ -21790,6 +22902,8 @@ + + @@ -21824,6 +22938,8 @@ + + @@ -21858,6 +22974,8 @@ + + @@ -21892,6 +23010,8 @@ + + @@ -21926,6 +23046,8 @@ + + @@ -21960,6 +23082,8 @@ + + @@ -21994,6 +23118,8 @@ + + @@ -22028,6 +23154,8 @@ + + @@ -22062,6 +23190,8 @@ + + @@ -22096,6 +23226,8 @@ + + @@ -22130,6 +23262,8 @@ + + @@ -22164,6 +23298,8 @@ + + @@ -22266,6 +23402,7 @@ + @@ -22296,6 +23433,7 @@ + @@ -22397,7 +23535,8 @@ - + + @@ -22428,7 +23567,8 @@ - + + @@ -22459,7 +23599,8 @@ - + + @@ -22490,7 +23631,8 @@ - + + @@ -22521,7 +23663,8 @@ - + + @@ -22552,7 +23695,8 @@ - + + @@ -22583,7 +23727,8 @@ - + + @@ -22751,7 +23896,8 @@ - + + @@ -22785,7 +23931,8 @@ - + + @@ -22819,7 +23966,8 @@ - + + @@ -22853,7 +24001,8 @@ - + + @@ -22887,7 +24036,8 @@ - + + @@ -22921,7 +24071,8 @@ - + + @@ -22955,7 +24106,8 @@ - + + @@ -22989,7 +24141,8 @@ - + + @@ -23023,7 +24176,8 @@ - + + @@ -23057,7 +24211,8 @@ - + + @@ -23091,6 +24246,8 @@ + + @@ -23124,6 +24281,8 @@ + + @@ -23157,6 +24316,8 @@ + + @@ -23190,6 +24351,8 @@ + + @@ -23223,6 +24386,8 @@ + + @@ -23256,6 +24421,8 @@ + + @@ -23289,6 +24456,8 @@ + + @@ -23322,6 +24491,8 @@ + + @@ -23355,6 +24526,8 @@ + + @@ -23388,6 +24561,8 @@ + + @@ -23421,6 +24596,8 @@ + + @@ -23560,6 +24737,7 @@ + @@ -23587,6 +24765,7 @@ + @@ -23987,6 +25166,7 @@ + @@ -24013,6 +25193,7 @@ + @@ -24059,6 +25240,7 @@ + @@ -24085,6 +25267,7 @@ + @@ -24111,6 +25294,7 @@ + @@ -24137,6 +25321,7 @@ + @@ -24235,6 +25420,7 @@ + @@ -24281,6 +25467,7 @@ + @@ -24307,6 +25494,7 @@ + @@ -24460,7 +25648,8 @@ - + + @@ -24493,7 +25682,8 @@ - + + @@ -24526,7 +25716,8 @@ - + + @@ -24559,7 +25750,8 @@ - + + @@ -24592,7 +25784,8 @@ - + + @@ -24626,7 +25819,8 @@ - + + @@ -25391,7 +26585,8 @@ - + + @@ -25416,6 +26611,7 @@ + diff --git a/wbls-full.json b/wbls-full.json index 25f6826..d003e97 100644 --- a/wbls-full.json +++ b/wbls-full.json @@ -37,9 +37,9 @@ "val" : "Version: 1.04" }, { "pred" : "http://www.w3.org/2002/07/owl#versionInfo", - "val" : "2024-01-16" + "val" : "2024-04-09" } ], - "version" : "http://purl.obolibrary.org/obo/wbls/releases/2024-01-16/wbls-full.json" + "version" : "http://purl.obolibrary.org/obo/wbls/releases/2024-04-09/wbls-full.json" }, "nodes" : [ { "id" : "http://purl.obolibrary.org/obo/IAO_0000125", @@ -170,7 +170,14 @@ "definition" : { "val" : "b is a specifically dependent continuant = Def. b is a continuant & there is some independent continuant c which is not a spatial region and which is such that b s-depends_on c at every time t during the course of b’s existence. (axiom label in BFO2 Reference: [050-003])" }, - "comments" : [ "A continuant that inheres in or is borne by other entities. Every instance of A requires some specific instance of B which must always be the same." ] + "comments" : [ "A continuant that inheres in or is borne by other entities. Every instance of A requires some specific instance of B which must always be the same." ], + "basicPropertyValues" : [ { + "pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso", + "val" : "https://github.com/OBOFoundry/COB/issues/65" + }, { + "pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso", + "val" : "https://github.com/oborel/obo-relations/pull/284" + } ] } }, { "id" : "http://purl.obolibrary.org/obo/BFO_0000023", @@ -370,7 +377,7 @@ "val" : "A molecular process that can be carried out by the action of a single macromolecular machine, usually via direct physical interactions with other molecular entities. Function in this sense denotes an action, or activity, that a gene product (or a complex) performs.", "xrefs" : [ "GOC:pdt" ] }, - "comments" : [ "Note that, in addition to forming the root of the molecular function ontology, this term is recommended for use for the annotation of gene products whose molecular function is unknown. When this term is used for annotation, it indicates that no information was available about the molecular function of the gene product annotated as of the date the annotation was made; the evidence code 'no data' (ND), is used to indicate this. Despite its name, this is not a type of 'function' in the sense typically defined by upper ontologies such as Basic Formal Ontology (BFO). It is instead a BFO:process carried out by a single gene product or complex." ], + "comments" : [ "Note that, in addition to forming the root of the molecular function ontology, this term is recommended for use for the annotation of gene products whose molecular function is unknown. When this term is used for annotation, it indicates that no information was available about the molecular function of the gene product annotated as of the date the annotation was made; the evidence code 'no data' (ND), is used to indicate this. Despite its name, this is not a type of 'function' in the sense typically defined by upper ontologies such as Basic Formal Ontology (BFO). It is instead a BFO:process carried out by a single gene product or complex.", "This is the same as GO molecular function" ], "synonyms" : [ { "pred" : "hasExactSynonym", "val" : "molecular function" @@ -382,10 +389,9 @@ "type" : "CLASS", "meta" : { "definition" : { - "val" : "A biological process is the execution of a genetically-encoded biological module or program. It consists of all the steps required to achieve the specific biological objective of the module. A biological process is accomplished by a particular set of molecular functions carried out by specific gene products (or macromolecular complexes), often in a highly regulated manner and in a particular temporal sequence.", - "xrefs" : [ "GOC:pdt" ] + "val" : "A process that emerges from two or more causally-connected macromolecular activities and has evolved to achieve a biological objective." }, - "comments" : [ "Note that, in addition to forming the root of the biological process ontology, this term is recommended for use for the annotation of gene products whose biological process is unknown. When this term is used for annotation, it indicates that no information was available about the biological process of the gene product annotated as of the date the annotation was made; the evidence code 'no data' (ND), is used to indicate this." ], + "comments" : [ "A biological process is an evolved process", "Note that, in addition to forming the root of the biological process ontology, this term is recommended for use for the annotation of gene products whose biological process is unknown. When this term is used for annotation, it indicates that no information was available about the biological process of the gene product annotated as of the date the annotation was made; the evidence code 'no data' (ND), is used to indicate this." ], "synonyms" : [ { "pred" : "hasExactSynonym", "val" : "biological process" @@ -656,6 +662,9 @@ }, { "pred" : "http://purl.obolibrary.org/obo/RO_0001900", "val" : "http://purl.obolibrary.org/obo/RO_0001901" + }, { + "pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso", + "val" : "https://github.com/oborel/obo-relations/pull/284" } ] } }, { @@ -2756,6 +2765,8 @@ "val" : "AAO:0010841" }, { "val" : "AEO:0000000" + }, { + "val" : "BFO:0000004" }, { "val" : "BILA:0000000" }, { @@ -2764,8 +2775,6 @@ "val" : "CARO:0000000" }, { "val" : "EHDAA2:0002229" - }, { - "val" : "FBbt:10000000" }, { "val" : "FMA:62955" }, { @@ -20940,6 +20949,18 @@ "sub" : "http://purl.obolibrary.org/obo/BFO_0000040", "pred" : "is_a", "obj" : "http://purl.obolibrary.org/obo/BFO_0000004" + }, { + "sub" : "http://purl.obolibrary.org/obo/GO_0003674", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000015" + }, { + "sub" : "http://purl.obolibrary.org/obo/GO_0008150", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000015" + }, { + "sub" : "http://purl.obolibrary.org/obo/GO_0008150", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000051", + "obj" : "http://purl.obolibrary.org/obo/GO_0003674" }, { "sub" : "http://purl.obolibrary.org/obo/GO_0016301", "pred" : "is_a", @@ -34668,6 +34689,10 @@ "sub" : "http://purl.obolibrary.org/obo/RO_0002180", "pred" : "subPropertyOf", "obj" : "http://purl.obolibrary.org/obo/BFO_0000051" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002202", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002254" }, { "sub" : "http://purl.obolibrary.org/obo/RO_0002202", "pred" : "subPropertyOf", @@ -35199,6 +35224,10 @@ "sub" : "http://purl.obolibrary.org/obo/BFO_0000004", "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", "obj" : "http://purl.obolibrary.org/obo/BFO_0000004" + }, { + "sub" : "http://purl.obolibrary.org/obo/BFO_0000015", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000015" }, { "sub" : "http://purl.obolibrary.org/obo/BFO_0000017", "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", @@ -35212,6 +35241,13 @@ "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", "obj" : "http://purl.obolibrary.org/obo/BFO_0000020" } ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/BFO_0000051", + "allValuesFromEdges" : [ { + "sub" : "http://purl.obolibrary.org/obo/BFO_0000020", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000051", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000020" + } ] }, { "predicateId" : "http://purl.obolibrary.org/obo/BFO_0000062", "domainClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000003" ], @@ -35226,7 +35262,7 @@ "rangeClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000003" ] }, { "predicateId" : "http://purl.obolibrary.org/obo/RO_0000057", - "domainClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000003" ], + "domainClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000003", "http://purl.obolibrary.org/obo/BFO_0000015" ], "rangeClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000002" ] }, { "predicateId" : "http://purl.obolibrary.org/obo/RO_0000079", diff --git a/wbls-full.obo b/wbls-full.obo index 0ba5d7c..3406ec6 100644 --- a/wbls-full.obo +++ b/wbls-full.obo @@ -1,5 +1,5 @@ format-version: 1.2 -data-version: wbls/releases/2024-01-16/wbls-full.owl +data-version: wbls/releases/2024-04-09/wbls-full.owl date: 15:11:2017 12:24 saved-by: chris-grove auto-generated-by: OBO-Edit 2.2-rc1 @@ -19,7 +19,7 @@ property_value: http://purl.org/dc/elements/1.1/description "Ontology about the property_value: http://purl.org/dc/elements/1.1/title "C. elegans Development Ontology" xsd:string property_value: http://purl.org/dc/terms/license "http://creativecommons.org/licenses/by/4.0/" xsd:string property_value: IAO:0000700 WBls:0000075 -property_value: owl:versionInfo "2024-01-16" xsd:string +property_value: owl:versionInfo "2024-04-09" xsd:string [Term] id: BFO:0000002 @@ -40,7 +40,7 @@ name: independent continuant def: "b is an independent continuant = Def. b is a continuant which is such that there is no c and no t such that b s-depends_on c at t. (axiom label in BFO2 Reference: [017-002])" [] comment: A continuant that is a bearer of quality and realizable entity entities, in which other entities inhere and which itself cannot inhere in anything. is_a: BFO:0000002 ! continuant -disjoint_from: BFO:0000020 ! specifically dependent continuant +disjoint_from: BFO:0000020 ! characteristic relationship: part_of BFO:0000004 {all_only="true"} ! independent continuant [Term] @@ -49,6 +49,7 @@ name: process def: "p is a process = Def. p is an occurrent that has temporal proper parts and for some time t, p s-depends_on some material entity at t. (axiom label in BFO2 Reference: [083-003])" [] comment: An occurrent that has temporal proper parts and for some time t, p s-depends_on some material entity at t. is_a: BFO:0000003 ! occurrent +relationship: part_of BFO:0000015 {all_only="true"} ! process [Term] id: BFO:0000016 @@ -58,25 +59,30 @@ disjoint_from: BFO:0000023 ! role [Term] id: BFO:0000017 +name: realizable name: realizable entity def: "A specifically dependent continuant that inheres in continuant entities and are not exhibited in full at every time in which it inheres in an entity or group of entities. The exhibition or actualization of a realizable entity is a particular manifestation, functioning or process that occurs under certain circumstances." [] -is_a: BFO:0000020 ! specifically dependent continuant +is_a: BFO:0000020 ! characteristic disjoint_from: BFO:0000019 ! quality relationship: part_of BFO:0000017 {all_only="true"} ! realizable entity [Term] id: BFO:0000019 name: quality -is_a: BFO:0000020 ! specifically dependent continuant +is_a: BFO:0000020 ! characteristic relationship: part_of BFO:0000019 {all_only="true"} ! quality [Term] id: BFO:0000020 +name: characteristic name: specifically dependent continuant def: "b is a specifically dependent continuant = Def. b is a continuant & there is some independent continuant c which is not a spatial region and which is such that b s-depends_on c at every time t during the course of b’s existence. (axiom label in BFO2 Reference: [050-003])" [] comment: A continuant that inheres in or is borne by other entities. Every instance of A requires some specific instance of B which must always be the same. is_a: BFO:0000002 ! continuant -relationship: part_of BFO:0000020 {all_only="true"} ! specifically dependent continuant +relationship: BFO:0000051 BFO:0000020 {all_only="true"} ! has part characteristic +relationship: part_of BFO:0000020 {all_only="true"} ! characteristic +property_value: seeAlso "https://github.com/OBOFoundry/COB/issues/65" xsd:string +property_value: seeAlso "https://github.com/oborel/obo-relations/pull/284" xsd:string [Term] id: BFO:0000023 @@ -97,21 +103,30 @@ is_a: BFO:0000004 ! independent continuant [Term] id: GO:0003674 +name: gene product or complex activity name: molecular_function def: "A molecular process that can be carried out by the action of a single macromolecular machine, usually via direct physical interactions with other molecular entities. Function in this sense denotes an action, or activity, that a gene product (or a complex) performs." [GOC:pdt] comment: Note that, in addition to forming the root of the molecular function ontology, this term is recommended for use for the annotation of gene products whose molecular function is unknown. When this term is used for annotation, it indicates that no information was available about the molecular function of the gene product annotated as of the date the annotation was made; the evidence code 'no data' (ND), is used to indicate this. Despite its name, this is not a type of 'function' in the sense typically defined by upper ontologies such as Basic Formal Ontology (BFO). It is instead a BFO:process carried out by a single gene product or complex. +comment: This is the same as GO molecular function synonym: "molecular function" EXACT [] +is_a: BFO:0000015 ! process +disjoint_from: GO:0008150 ! biological_process [Term] id: GO:0008150 +name: biological process name: biological_process def: "A biological process is the execution of a genetically-encoded biological module or program. It consists of all the steps required to achieve the specific biological objective of the module. A biological process is accomplished by a particular set of molecular functions carried out by specific gene products (or macromolecular complexes), often in a highly regulated manner and in a particular temporal sequence." [GOC:pdt] +def: "A process that emerges from two or more causally-connected macromolecular activities and has evolved to achieve a biological objective." [] +comment: A biological process is an evolved process comment: Note that, in addition to forming the root of the biological process ontology, this term is recommended for use for the annotation of gene products whose biological process is unknown. When this term is used for annotation, it indicates that no information was available about the biological process of the gene product annotated as of the date the annotation was made; the evidence code 'no data' (ND), is used to indicate this. synonym: "biological process" EXACT [] synonym: "physiological process" EXACT [] synonym: "single organism process" RELATED [] synonym: "single-organism process" RELATED [] xref: Wikipedia:Biological_process +is_a: BFO:0000015 ! process +relationship: BFO:0000051 GO:0003674 ! has part molecular_function created_by: jl creation_date: 2012-09-19T15:05:24Z @@ -140,7 +155,7 @@ property_value: IAO:0000119 "OBI_0000266" xsd:string id: PATO:0000001 name: quality def: "A dependent entity that inheres in a bearer by virtue of how the bearer is related to other entities" [PATOC:GVG] -is_a: BFO:0000020 ! specifically dependent continuant +is_a: BFO:0000020 ! characteristic [Term] id: UBERON:0001062 @@ -150,11 +165,11 @@ subset: common_anatomy subset: upper_level xref: AAO:0010841 xref: AEO:0000000 +xref: BFO:0000004 xref: BILA:0000000 xref: BIRNLEX:6 xref: CARO:0000000 xref: EHDAA2:0002229 -xref: FBbt:10000000 xref: FMA:62955 xref: HAO:0000000 xref: MA:0000001 @@ -9643,7 +9658,8 @@ property_value: IAO:0000116 "A bearer can have many dependents, and its dependen property_value: IAO:0000118 "bearer_of" xsd:string property_value: IAO:0000118 "is bearer of" xsd:string property_value: RO:0001900 RO:0001901 -range: BFO:0000020 ! specifically dependent continuant +property_value: seeAlso "https://github.com/oborel/obo-relations/pull/284" xsd:string +range: BFO:0000020 ! characteristic is_inverse_functional: true [Typedef] @@ -9671,6 +9687,7 @@ property_value: IAO:0000112 "this process has participant this input material (o property_value: IAO:0000116 "Has_participant is a primitive instance-level relation between a process, a continuant, and a time at which the continuant participates in some way in the process. The relation obtains, for example, when this particular process of oxygen exchange across this particular alveolar membrane has_participant this particular sample of hemoglobin at this particular time." xsd:string property_value: IAO:0000118 "has_participant" xsd:string domain: BFO:0000003 ! occurrent +domain: BFO:0000015 ! process range: BFO:0000002 ! continuant holds_over_chain: BFO:0000051 RO:0000057 @@ -9907,6 +9924,7 @@ property_value: IAO:0000117 https://orcid.org/0000-0003-1980-3228 domain: BFO:0000004 ! independent continuant range: BFO:0000004 ! independent continuant is_transitive: true +is_a: RO:0002254 ! has developmental contribution from is_a: RO:0002258 ! developmentally preceded by inverse_of: RO:0002203 ! develops into diff --git a/wbls-full.owl b/wbls-full.owl index c0c3076..e489506 100644 --- a/wbls-full.owl +++ b/wbls-full.owl @@ -19,7 +19,7 @@ xmlns:subsets="http://purl.obolibrary.org/obo/ro/subsets#" xmlns:oboInOwl="http://www.geneontology.org/formats/oboInOwl#"> - + Ontology about the development and life stages of the C. elegans C. elegans Development Ontology @@ -31,7 +31,7 @@ chris-grove Editors: Wen J. Chen & Daniela Raciti, Raymond Lee, Chris Grove, WormBase, Caltech. Jane Lomax, Wellcome Trust Sanger Institute. Version: 1.04 - 2024-01-16 + 2024-04-09 @@ -608,6 +608,7 @@ A continuant cannot be part of an occurrent: use 'participates in'. An part_of + part of part of part_of @@ -638,6 +639,7 @@ A continuant cannot have an occurrent as part: use 'participates in'. + has part has part @@ -722,7 +724,9 @@ A continuant cannot have an occurrent as part: use 'participates in'. bearer_of is bearer of + has characteristic has characteristic + https://github.com/oborel/obo-relations/pull/284 @@ -748,6 +752,7 @@ A continuant cannot have an occurrent as part: use 'participates in'. + @@ -761,6 +766,7 @@ A continuant cannot have an occurrent as part: use 'participates in'. Has_participant is a primitive instance-level relation between a process, a continuant, and a time at which the continuant participates in some way in the process. The relation obtains, for example, when this particular process of oxygen exchange across this particular alveolar membrane has_participant this particular sample of hemoglobin at this particular time. has_participant http://www.obofoundry.org/ro/#OBO_REL:has_participant + has participant has participant @@ -1136,6 +1142,7 @@ A continuant cannot have an occurrent as part: use 'participates in'. + @@ -1619,6 +1626,7 @@ A continuant cannot have an occurrent as part: use 'participates in'. inverse of enables + enabled by enabled by https://wiki.geneontology.org/Enabled_by @@ -2676,6 +2684,12 @@ For example, A and B may be gene products and binding of B by A positively regul + + + + + + p is a process = Def. p is an occurrent that has temporal proper parts and for some time t, p s-depends_on some material entity at t. (axiom label in BFO2 Reference: [083-003]) An occurrent that has temporal proper parts and for some time t, p s-depends_on some material entity at t. process @@ -2705,6 +2719,7 @@ For example, A and B may be gene products and binding of B by A positively regul A specifically dependent continuant that inheres in continuant entities and are not exhibited in full at every time in which it inheres in an entity or group of entities. The exhibition or actualization of a realizable entity is a particular manifestation, functioning or process that occurs under certain circumstances. + realizable realizable entity @@ -2735,9 +2750,18 @@ For example, A and B may be gene products and binding of B by A positively regul + + + + + + b is a specifically dependent continuant = Def. b is a continuant & there is some independent continuant c which is not a spatial region and which is such that b s-depends_on c at every time t during the course of b’s existence. (axiom label in BFO2 Reference: [050-003]) A continuant that inheres in or is borne by other entities. Every instance of A requires some specific instance of B which must always be the same. + characteristic specifically dependent continuant + https://github.com/OBOFoundry/COB/issues/65 + https://github.com/oborel/obo-relations/pull/284 @@ -2774,10 +2798,14 @@ For example, A and B may be gene products and binding of B by A positively regul + + A molecular process that can be carried out by the action of a single macromolecular machine, usually via direct physical interactions with other molecular entities. Function in this sense denotes an action, or activity, that a gene product (or a complex) performs. molecular function GO:0003674 Note that, in addition to forming the root of the molecular function ontology, this term is recommended for use for the annotation of gene products whose molecular function is unknown. When this term is used for annotation, it indicates that no information was available about the molecular function of the gene product annotated as of the date the annotation was made; the evidence code 'no data' (ND), is used to indicate this. Despite its name, this is not a type of 'function' in the sense typically defined by upper ontologies such as Basic Formal Ontology (BFO). It is instead a BFO:process carried out by a single gene product or complex. + This is the same as GO molecular function + gene product or complex activity molecular_function @@ -2792,7 +2820,15 @@ For example, A and B may be gene products and binding of B by A positively regul + + + + + + + A biological process is the execution of a genetically-encoded biological module or program. It consists of all the steps required to achieve the specific biological objective of the module. A biological process is accomplished by a particular set of molecular functions carried out by specific gene products (or macromolecular complexes), often in a highly regulated manner and in a particular temporal sequence. + A process that emerges from two or more causally-connected macromolecular activities and has evolved to achieve a biological objective. jl 2012-09-19T15:05:24Z Wikipedia:Biological_process @@ -2801,7 +2837,9 @@ For example, A and B may be gene products and binding of B by A positively regul single organism process single-organism process GO:0008150 + A biological process is an evolved process Note that, in addition to forming the root of the biological process ontology, this term is recommended for use for the annotation of gene products whose biological process is unknown. When this term is used for annotation, it indicates that no information was available about the biological process of the gene product annotated as of the date the annotation was made; the evidence code 'no data' (ND), is used to indicate this. + biological process biological_process @@ -2908,11 +2946,11 @@ For example, A and B may be gene products and binding of B by A positively regul AAO:0010841 AEO:0000000 + BFO:0000004 BILA:0000000 BIRNLEX:6 CARO:0000000 EHDAA2:0002229 - FBbt:10000000 FMA:62955 HAO:0000000 MA:0000001 @@ -29555,10 +29593,10 @@ For example, A and B may be gene products and binding of B by A positively regul /////////////////////////////////////////////////////////////////////////////////////// --> - + - + @@ -29576,66 +29614,54 @@ For example, A and B may be gene products and binding of B by A positively regul - - - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - @@ -29648,8 +29674,8 @@ For example, A and B may be gene products and binding of B by A positively regul - - + + @@ -29659,7 +29685,7 @@ For example, A and B may be gene products and binding of B by A positively regul - + @@ -29669,7 +29695,7 @@ For example, A and B may be gene products and binding of B by A positively regul - + @@ -29686,8 +29712,8 @@ For example, A and B may be gene products and binding of B by A positively regul - - + + @@ -29949,7 +29975,7 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - + @@ -29959,8 +29985,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -29970,8 +29996,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -29988,8 +30014,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30008,7 +30034,7 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - + @@ -30018,8 +30044,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30029,8 +30055,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30047,8 +30073,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30064,8 +30090,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30075,7 +30101,7 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - + @@ -30085,8 +30111,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30096,8 +30122,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30116,8 +30142,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30135,8 +30161,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30146,8 +30172,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30157,8 +30183,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30175,8 +30201,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30193,8 +30219,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30204,8 +30230,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30215,8 +30241,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30233,8 +30259,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30251,8 +30277,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30262,8 +30288,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30273,8 +30299,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30291,8 +30317,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30309,8 +30335,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30320,8 +30346,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30336,8 +30362,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30354,8 +30380,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30365,8 +30391,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30381,8 +30407,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30399,8 +30425,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30410,8 +30436,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30426,8 +30452,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30444,8 +30470,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30455,8 +30481,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30471,8 +30497,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30489,8 +30515,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30500,8 +30526,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30516,8 +30542,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30534,8 +30560,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30545,8 +30571,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30561,7 +30587,7 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - + @@ -30571,7 +30597,7 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - + @@ -30590,8 +30616,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30601,8 +30627,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30617,7 +30643,7 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - + @@ -30627,7 +30653,7 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - + @@ -30689,8 +30715,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30700,8 +30726,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30716,8 +30742,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30732,9 +30758,9 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - - + + + @@ -30744,8 +30770,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30759,9 +30785,9 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - - + + + @@ -30776,9 +30802,9 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - - + + + @@ -30788,8 +30814,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30803,7 +30829,7 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - + diff --git a/wbls-simple.json b/wbls-simple.json index 923efa3..051191c 100644 --- a/wbls-simple.json +++ b/wbls-simple.json @@ -37,9 +37,9 @@ "val" : "Version: 1.04" }, { "pred" : "http://www.w3.org/2002/07/owl#versionInfo", - "val" : "2024-01-16" + "val" : "2024-04-09" } ], - "version" : "http://purl.obolibrary.org/obo/wbls/releases/2024-01-16/wbls-simple.json" + "version" : "http://purl.obolibrary.org/obo/wbls/releases/2024-04-09/wbls-simple.json" }, "nodes" : [ { "id" : "http://purl.obolibrary.org/obo/BFO_0000050", diff --git a/wbls-simple.obo b/wbls-simple.obo index 642a0b4..fe47ad7 100644 --- a/wbls-simple.obo +++ b/wbls-simple.obo @@ -1,5 +1,5 @@ format-version: 1.2 -data-version: wbls/releases/2024-01-16/wbls-simple.owl +data-version: wbls/releases/2024-04-09/wbls-simple.owl date: 15:11:2017 12:24 saved-by: chris-grove auto-generated-by: OBO-Edit 2.2-rc1 diff --git a/wbls-simple.owl b/wbls-simple.owl index 3b67b7d..d0f9257 100644 --- a/wbls-simple.owl +++ b/wbls-simple.owl @@ -11,7 +11,7 @@ xmlns:terms="http://purl.org/dc/terms/" xmlns:oboInOwl="http://www.geneontology.org/formats/oboInOwl#"> - + Ontology about the development and life stages of the C. elegans C. elegans Development Ontology @@ -290,6 +290,7 @@ A continuant cannot be part of an occurrent: use 'participates in'. An part_of + part of part of part_of diff --git a/wbls.json b/wbls.json index a06d823..bfef6c6 100644 --- a/wbls.json +++ b/wbls.json @@ -37,9 +37,9 @@ "val" : "Version: 1.04" }, { "pred" : "http://www.w3.org/2002/07/owl#versionInfo", - "val" : "2024-01-16" + "val" : "2024-04-09" } ], - "version" : "http://purl.obolibrary.org/obo/wbls/releases/2024-01-16/wbls.json" + "version" : "http://purl.obolibrary.org/obo/wbls/releases/2024-04-09/wbls.json" }, "nodes" : [ { "id" : "http://purl.obolibrary.org/obo/IAO_0000125", @@ -170,7 +170,14 @@ "definition" : { "val" : "b is a specifically dependent continuant = Def. b is a continuant & there is some independent continuant c which is not a spatial region and which is such that b s-depends_on c at every time t during the course of b’s existence. (axiom label in BFO2 Reference: [050-003])" }, - "comments" : [ "A continuant that inheres in or is borne by other entities. Every instance of A requires some specific instance of B which must always be the same." ] + "comments" : [ "A continuant that inheres in or is borne by other entities. Every instance of A requires some specific instance of B which must always be the same." ], + "basicPropertyValues" : [ { + "pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso", + "val" : "https://github.com/OBOFoundry/COB/issues/65" + }, { + "pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso", + "val" : "https://github.com/oborel/obo-relations/pull/284" + } ] } }, { "id" : "http://purl.obolibrary.org/obo/BFO_0000023", @@ -370,7 +377,7 @@ "val" : "A molecular process that can be carried out by the action of a single macromolecular machine, usually via direct physical interactions with other molecular entities. Function in this sense denotes an action, or activity, that a gene product (or a complex) performs.", "xrefs" : [ "GOC:pdt" ] }, - "comments" : [ "Note that, in addition to forming the root of the molecular function ontology, this term is recommended for use for the annotation of gene products whose molecular function is unknown. When this term is used for annotation, it indicates that no information was available about the molecular function of the gene product annotated as of the date the annotation was made; the evidence code 'no data' (ND), is used to indicate this. Despite its name, this is not a type of 'function' in the sense typically defined by upper ontologies such as Basic Formal Ontology (BFO). It is instead a BFO:process carried out by a single gene product or complex." ], + "comments" : [ "Note that, in addition to forming the root of the molecular function ontology, this term is recommended for use for the annotation of gene products whose molecular function is unknown. When this term is used for annotation, it indicates that no information was available about the molecular function of the gene product annotated as of the date the annotation was made; the evidence code 'no data' (ND), is used to indicate this. Despite its name, this is not a type of 'function' in the sense typically defined by upper ontologies such as Basic Formal Ontology (BFO). It is instead a BFO:process carried out by a single gene product or complex.", "This is the same as GO molecular function" ], "synonyms" : [ { "pred" : "hasExactSynonym", "val" : "molecular function" @@ -382,10 +389,9 @@ "type" : "CLASS", "meta" : { "definition" : { - "val" : "A biological process is the execution of a genetically-encoded biological module or program. It consists of all the steps required to achieve the specific biological objective of the module. A biological process is accomplished by a particular set of molecular functions carried out by specific gene products (or macromolecular complexes), often in a highly regulated manner and in a particular temporal sequence.", - "xrefs" : [ "GOC:pdt" ] + "val" : "A process that emerges from two or more causally-connected macromolecular activities and has evolved to achieve a biological objective." }, - "comments" : [ "Note that, in addition to forming the root of the biological process ontology, this term is recommended for use for the annotation of gene products whose biological process is unknown. When this term is used for annotation, it indicates that no information was available about the biological process of the gene product annotated as of the date the annotation was made; the evidence code 'no data' (ND), is used to indicate this." ], + "comments" : [ "A biological process is an evolved process", "Note that, in addition to forming the root of the biological process ontology, this term is recommended for use for the annotation of gene products whose biological process is unknown. When this term is used for annotation, it indicates that no information was available about the biological process of the gene product annotated as of the date the annotation was made; the evidence code 'no data' (ND), is used to indicate this." ], "synonyms" : [ { "pred" : "hasExactSynonym", "val" : "biological process" @@ -656,6 +662,9 @@ }, { "pred" : "http://purl.obolibrary.org/obo/RO_0001900", "val" : "http://purl.obolibrary.org/obo/RO_0001901" + }, { + "pred" : "http://www.w3.org/2000/01/rdf-schema#seeAlso", + "val" : "https://github.com/oborel/obo-relations/pull/284" } ] } }, { @@ -2756,6 +2765,8 @@ "val" : "AAO:0010841" }, { "val" : "AEO:0000000" + }, { + "val" : "BFO:0000004" }, { "val" : "BILA:0000000" }, { @@ -2764,8 +2775,6 @@ "val" : "CARO:0000000" }, { "val" : "EHDAA2:0002229" - }, { - "val" : "FBbt:10000000" }, { "val" : "FMA:62955" }, { @@ -20940,6 +20949,18 @@ "sub" : "http://purl.obolibrary.org/obo/BFO_0000040", "pred" : "is_a", "obj" : "http://purl.obolibrary.org/obo/BFO_0000004" + }, { + "sub" : "http://purl.obolibrary.org/obo/GO_0003674", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000015" + }, { + "sub" : "http://purl.obolibrary.org/obo/GO_0008150", + "pred" : "is_a", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000015" + }, { + "sub" : "http://purl.obolibrary.org/obo/GO_0008150", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000051", + "obj" : "http://purl.obolibrary.org/obo/GO_0003674" }, { "sub" : "http://purl.obolibrary.org/obo/GO_0016301", "pred" : "is_a", @@ -34668,6 +34689,10 @@ "sub" : "http://purl.obolibrary.org/obo/RO_0002180", "pred" : "subPropertyOf", "obj" : "http://purl.obolibrary.org/obo/BFO_0000051" + }, { + "sub" : "http://purl.obolibrary.org/obo/RO_0002202", + "pred" : "subPropertyOf", + "obj" : "http://purl.obolibrary.org/obo/RO_0002254" }, { "sub" : "http://purl.obolibrary.org/obo/RO_0002202", "pred" : "subPropertyOf", @@ -35199,6 +35224,10 @@ "sub" : "http://purl.obolibrary.org/obo/BFO_0000004", "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", "obj" : "http://purl.obolibrary.org/obo/BFO_0000004" + }, { + "sub" : "http://purl.obolibrary.org/obo/BFO_0000015", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000015" }, { "sub" : "http://purl.obolibrary.org/obo/BFO_0000017", "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", @@ -35212,6 +35241,13 @@ "pred" : "http://purl.obolibrary.org/obo/BFO_0000050", "obj" : "http://purl.obolibrary.org/obo/BFO_0000020" } ] + }, { + "predicateId" : "http://purl.obolibrary.org/obo/BFO_0000051", + "allValuesFromEdges" : [ { + "sub" : "http://purl.obolibrary.org/obo/BFO_0000020", + "pred" : "http://purl.obolibrary.org/obo/BFO_0000051", + "obj" : "http://purl.obolibrary.org/obo/BFO_0000020" + } ] }, { "predicateId" : "http://purl.obolibrary.org/obo/BFO_0000062", "domainClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000003" ], @@ -35226,7 +35262,7 @@ "rangeClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000003" ] }, { "predicateId" : "http://purl.obolibrary.org/obo/RO_0000057", - "domainClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000003" ], + "domainClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000003", "http://purl.obolibrary.org/obo/BFO_0000015" ], "rangeClassIds" : [ "http://purl.obolibrary.org/obo/BFO_0000002" ] }, { "predicateId" : "http://purl.obolibrary.org/obo/RO_0000079", diff --git a/wbls.obo b/wbls.obo index 642a0b4..fe47ad7 100644 --- a/wbls.obo +++ b/wbls.obo @@ -1,5 +1,5 @@ format-version: 1.2 -data-version: wbls/releases/2024-01-16/wbls-simple.owl +data-version: wbls/releases/2024-04-09/wbls-simple.owl date: 15:11:2017 12:24 saved-by: chris-grove auto-generated-by: OBO-Edit 2.2-rc1 diff --git a/wbls.owl b/wbls.owl index 3a35928..d91c82f 100644 --- a/wbls.owl +++ b/wbls.owl @@ -19,7 +19,7 @@ xmlns:subsets="http://purl.obolibrary.org/obo/ro/subsets#" xmlns:oboInOwl="http://www.geneontology.org/formats/oboInOwl#"> - + Ontology about the development and life stages of the C. elegans C. elegans Development Ontology @@ -31,7 +31,7 @@ chris-grove Editors: Wen J. Chen & Daniela Raciti, Raymond Lee, Chris Grove, WormBase, Caltech. Jane Lomax, Wellcome Trust Sanger Institute. Version: 1.04 - 2024-01-16 + 2024-04-09 @@ -608,6 +608,7 @@ A continuant cannot be part of an occurrent: use 'participates in'. An part_of + part of part of part_of @@ -638,6 +639,7 @@ A continuant cannot have an occurrent as part: use 'participates in'. + has part has part @@ -722,7 +724,9 @@ A continuant cannot have an occurrent as part: use 'participates in'. bearer_of is bearer of + has characteristic has characteristic + https://github.com/oborel/obo-relations/pull/284 @@ -748,6 +752,7 @@ A continuant cannot have an occurrent as part: use 'participates in'. + @@ -761,6 +766,7 @@ A continuant cannot have an occurrent as part: use 'participates in'. Has_participant is a primitive instance-level relation between a process, a continuant, and a time at which the continuant participates in some way in the process. The relation obtains, for example, when this particular process of oxygen exchange across this particular alveolar membrane has_participant this particular sample of hemoglobin at this particular time. has_participant http://www.obofoundry.org/ro/#OBO_REL:has_participant + has participant has participant @@ -1136,6 +1142,7 @@ A continuant cannot have an occurrent as part: use 'participates in'. + @@ -1619,6 +1626,7 @@ A continuant cannot have an occurrent as part: use 'participates in'. inverse of enables + enabled by enabled by https://wiki.geneontology.org/Enabled_by @@ -2676,6 +2684,12 @@ For example, A and B may be gene products and binding of B by A positively regul + + + + + + p is a process = Def. p is an occurrent that has temporal proper parts and for some time t, p s-depends_on some material entity at t. (axiom label in BFO2 Reference: [083-003]) An occurrent that has temporal proper parts and for some time t, p s-depends_on some material entity at t. process @@ -2705,6 +2719,7 @@ For example, A and B may be gene products and binding of B by A positively regul A specifically dependent continuant that inheres in continuant entities and are not exhibited in full at every time in which it inheres in an entity or group of entities. The exhibition or actualization of a realizable entity is a particular manifestation, functioning or process that occurs under certain circumstances. + realizable realizable entity @@ -2735,9 +2750,18 @@ For example, A and B may be gene products and binding of B by A positively regul + + + + + + b is a specifically dependent continuant = Def. b is a continuant & there is some independent continuant c which is not a spatial region and which is such that b s-depends_on c at every time t during the course of b’s existence. (axiom label in BFO2 Reference: [050-003]) A continuant that inheres in or is borne by other entities. Every instance of A requires some specific instance of B which must always be the same. + characteristic specifically dependent continuant + https://github.com/OBOFoundry/COB/issues/65 + https://github.com/oborel/obo-relations/pull/284 @@ -2774,10 +2798,14 @@ For example, A and B may be gene products and binding of B by A positively regul + + A molecular process that can be carried out by the action of a single macromolecular machine, usually via direct physical interactions with other molecular entities. Function in this sense denotes an action, or activity, that a gene product (or a complex) performs. molecular function GO:0003674 Note that, in addition to forming the root of the molecular function ontology, this term is recommended for use for the annotation of gene products whose molecular function is unknown. When this term is used for annotation, it indicates that no information was available about the molecular function of the gene product annotated as of the date the annotation was made; the evidence code 'no data' (ND), is used to indicate this. Despite its name, this is not a type of 'function' in the sense typically defined by upper ontologies such as Basic Formal Ontology (BFO). It is instead a BFO:process carried out by a single gene product or complex. + This is the same as GO molecular function + gene product or complex activity molecular_function @@ -2792,7 +2820,15 @@ For example, A and B may be gene products and binding of B by A positively regul + + + + + + + A biological process is the execution of a genetically-encoded biological module or program. It consists of all the steps required to achieve the specific biological objective of the module. A biological process is accomplished by a particular set of molecular functions carried out by specific gene products (or macromolecular complexes), often in a highly regulated manner and in a particular temporal sequence. + A process that emerges from two or more causally-connected macromolecular activities and has evolved to achieve a biological objective. jl 2012-09-19T15:05:24Z Wikipedia:Biological_process @@ -2801,7 +2837,9 @@ For example, A and B may be gene products and binding of B by A positively regul single organism process single-organism process GO:0008150 + A biological process is an evolved process Note that, in addition to forming the root of the biological process ontology, this term is recommended for use for the annotation of gene products whose biological process is unknown. When this term is used for annotation, it indicates that no information was available about the biological process of the gene product annotated as of the date the annotation was made; the evidence code 'no data' (ND), is used to indicate this. + biological process biological_process @@ -2908,11 +2946,11 @@ For example, A and B may be gene products and binding of B by A positively regul AAO:0010841 AEO:0000000 + BFO:0000004 BILA:0000000 BIRNLEX:6 CARO:0000000 EHDAA2:0002229 - FBbt:10000000 FMA:62955 HAO:0000000 MA:0000001 @@ -29555,10 +29593,10 @@ For example, A and B may be gene products and binding of B by A positively regul /////////////////////////////////////////////////////////////////////////////////////// --> - + - + @@ -29576,66 +29614,54 @@ For example, A and B may be gene products and binding of B by A positively regul - - - - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - - - - - - - - - @@ -29648,8 +29674,8 @@ For example, A and B may be gene products and binding of B by A positively regul - - + + @@ -29659,7 +29685,7 @@ For example, A and B may be gene products and binding of B by A positively regul - + @@ -29669,7 +29695,7 @@ For example, A and B may be gene products and binding of B by A positively regul - + @@ -29686,8 +29712,8 @@ For example, A and B may be gene products and binding of B by A positively regul - - + + @@ -29949,7 +29975,7 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - + @@ -29959,8 +29985,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -29970,8 +29996,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -29988,8 +30014,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30008,7 +30034,7 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - + @@ -30018,8 +30044,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30029,8 +30055,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30047,8 +30073,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30064,8 +30090,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30075,7 +30101,7 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - + @@ -30085,8 +30111,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30096,8 +30122,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30116,8 +30142,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30135,8 +30161,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30146,8 +30172,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30157,8 +30183,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30175,8 +30201,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30193,8 +30219,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30204,8 +30230,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30215,8 +30241,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30233,8 +30259,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30251,8 +30277,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30262,8 +30288,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30273,8 +30299,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30291,8 +30317,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30309,8 +30335,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30320,8 +30346,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30336,8 +30362,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30354,8 +30380,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30365,8 +30391,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30381,8 +30407,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30399,8 +30425,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30410,8 +30436,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30426,8 +30452,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30444,8 +30470,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30455,8 +30481,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30471,8 +30497,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30489,8 +30515,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30500,8 +30526,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30516,8 +30542,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30534,8 +30560,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30545,8 +30571,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30561,7 +30587,7 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - + @@ -30571,7 +30597,7 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - + @@ -30590,8 +30616,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30601,8 +30627,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30617,7 +30643,7 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - + @@ -30627,7 +30653,7 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - + @@ -30689,8 +30715,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30700,8 +30726,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30716,8 +30742,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30732,9 +30758,9 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - - + + + @@ -30744,8 +30770,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30759,9 +30785,9 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - - + + + @@ -30776,9 +30802,9 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - - + + + @@ -30788,8 +30814,8 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - - + + @@ -30803,7 +30829,7 @@ e.g. if GP X enables ATPase coupled transporter activity' and 'ATPase - +